Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_cxx_namespaces.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_CXX_NAMESPACES
  8. #
  9. # DESCRIPTION
  10. #
  11. # If the compiler can prevent names clashes using namespaces, define
  12. # HAVE_NAMESPACES.
  13. #
  14. # LICENSE
  15. #
  16. # Copyright (c) 2008 Todd Veldhuizen
  17. # Copyright (c) 2008 Luc Maisonobe <luc@spaceroots.org>
  18. # Copyright (c) 2013 Bastien Roucaries <roucaries.bastien+autoconf@gmail.com>
  19. #
  20. # Copying and distribution of this file, with or without modification, are
  21. # permitted in any medium without royalty provided the copyright notice
  22. # and this notice are preserved. This file is offered as-is, without any
  23. # warranty.
  24. #serial 9
  25. AU_ALIAS([AC_CXX_NAMESPACES], [AX_CXX_NAMESPACES])
  26. AC_DEFUN([AX_CXX_NAMESPACES],
  27. [AC_CACHE_CHECK(whether the compiler implements namespaces,
  28. ax_cv_cxx_namespaces,
  29. [AC_LANG_PUSH([C++])
  30. AC_COMPILE_IFELSE([AC_LANG_SOURCE([namespace Outer { namespace Inner { int i = 0; }}
  31. using namespace Outer::Inner; int foo(void) { return i;} ])],
  32. ax_cv_cxx_namespaces=yes, ax_cv_cxx_namespaces=no)
  33. AC_LANG_POP
  34. ])
  35. if test "$ax_cv_cxx_namespaces" = yes; then
  36. AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
  37. fi
  38. ])