Configure.hxx.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*============================================================================
  2. KWSys - Kitware System Library
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef @KWSYS_NAMESPACE@_Configure_hxx
  11. #define @KWSYS_NAMESPACE@_Configure_hxx
  12. /* Include C configuration. */
  13. #include <@KWSYS_NAMESPACE@/Configure.h>
  14. /* Whether wstring is available. */
  15. #define @KWSYS_NAMESPACE@_STL_HAS_WSTRING @KWSYS_STL_HAS_WSTRING@
  16. /* Whether <ext/stdio_filebuf.h> is available. */
  17. #define @KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H @KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H@
  18. /* If building a C++ file in kwsys itself, give the source file
  19. access to the macros without a configured namespace. */
  20. #if defined(KWSYS_NAMESPACE)
  21. # if !@KWSYS_NAMESPACE@_NAME_IS_KWSYS
  22. # define kwsys @KWSYS_NAMESPACE@
  23. # endif
  24. # define KWSYS_NAME_IS_KWSYS @KWSYS_NAMESPACE@_NAME_IS_KWSYS
  25. # define KWSYS_STL_HAS_WSTRING @KWSYS_NAMESPACE@_STL_HAS_WSTRING
  26. # define KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H @KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H
  27. #endif
  28. #endif