Fix include statements so they match all other files in gtk2_ardour
[ardour.git] / libs / glibmm2 / scripts / sun.m4
1 AC_DEFUN([GLIBMM_PROG_CXX_SUN],
2   [AC_CACHE_CHECK(whether we are using SUN CC compiler, ac_cv_prog_sun_cxx,
3     [if AC_TRY_COMMAND(${CXX-g++} -V 2>&1) | egrep "Sun WorkShop" >/dev/null 2>&1; then
4       ac_cv_prog_sun_cxx=yes
5     else
6       ac_cv_prog_sun_cxx=no
7     fi]
8    )]
9
10    if test "x${ac_cv_prog_sun_cxx}" = "xyes"; then
11    {
12      AC_DEFINE([GLIBMM_COMPILER_SUN_FORTE],[1], [Defined when the SUN Forte C++ compiler is being used.])
13    }
14    fi
15 )