blob: 9fdc3748a3f4b4ac0cacb27423fb9dc6e552ee6a [file] [log] [blame]
cristy964cb7f2010-04-25 23:18:00 +00001# ===========================================================================
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
26AU_ALIAS([AC_CXX_NAMESPACES], [AX_CXX_NAMESPACES])
27AC_DEFUN([AX_CXX_NAMESPACES],
28[AC_CACHE_CHECK(whether the compiler implements namespaces,
29ax_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])
37if test "$ax_cv_cxx_namespaces" = yes; then
38 AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
39fi
40])