]> granicus.if.org Git - imagemagick/blob - m4/ax_cxx_namespaces.m4
(no commit message)
[imagemagick] / m4 / ax_cxx_namespaces.m4
1 # ===========================================================================
2 #     http://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 #
19 #   Copying and distribution of this file, with or without modification, are
20 #   permitted in any medium without royalty provided the copyright notice
21 #   and this notice are preserved. This file is offered as-is, without any
22 #   warranty.
23
24 #serial 6
25
26 AU_ALIAS([AC_CXX_NAMESPACES], [AX_CXX_NAMESPACES])
27 AC_DEFUN([AX_CXX_NAMESPACES],
28 [AC_CACHE_CHECK(whether the compiler implements namespaces,
29 ax_cv_cxx_namespaces,
30 [AC_LANG_SAVE
31  AC_LANG_CPLUSPLUS
32  AC_TRY_COMPILE([namespace Outer { namespace Inner { int i = 0; }}],
33                 [using namespace Outer::Inner; return i;],
34  ax_cv_cxx_namespaces=yes, ax_cv_cxx_namespaces=no)
35  AC_LANG_RESTORE
36 ])
37 if test "$ax_cv_cxx_namespaces" = yes; then
38   AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
39 fi
40 ])