Actions
Bug #761
closedConfigure test for HAVE_STREAMBUF_H is missing
Start date:
2017-06-23
Due date:
% Done:
100%
Estimated time:
Module:
config, CMake
Operating System:
Compiler:
Description
The header file "ofstd/include/ofstdinc.h" checks for the macro HAVE_STREAMBUF_H although it is never defined (neither by Autoconf nor by CMake):
// define INCLUDE_STREAMBUF to include <streambuf> or <streambuf.h> if available #ifdef INCLUDE_STREAMBUF #ifdef USE_STD_CXX_INCLUDES #include <streambuf> #elif defined(HAVE_STREAMBUF_H) #include <streambuf.h> #endif #endif
Updated by Marco Eichelberg almost 8 years ago
- Target version changed from 3.6.3 to 3.6.6
Updated by Jörg Riesmeier almost 7 years ago
- Status changed from New to Closed
- Assignee set to Jörg Riesmeier
- % Done changed from 0 to 100
Fixed with commit 0f0c8f3.
Actions