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
Actions