X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=m4%2Fensc_cxxcompiler.m4;h=e831b66315e066073bc853c1ebcef5649c4d1579;hb=3be7930c595204f9afd2353933ad8f41c0b70923;hp=1dae532836be9e71d3cbf6fdc6e977e572b199f2;hpb=f2e778ad9b8b764a5a47ace201384a23650f473f;p=util-vserver.git diff --git a/m4/ensc_cxxcompiler.m4 b/m4/ensc_cxxcompiler.m4 index 1dae532..e831b66 100644 --- a/m4/ensc_cxxcompiler.m4 +++ b/m4/ensc_cxxcompiler.m4 @@ -2,16 +2,16 @@ dnl $Id$ dnl Copyright (C) 2002, 2003, 2004, 2005, 2009 dnl Enrico Scholz -dnl +dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; version 2 and/or 3 of the License. -dnl +dnl dnl This program is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. -dnl +dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -21,18 +21,18 @@ AC_DEFUN([ENSC_CXXCOMPILER], AC_REQUIRE([AC_PROG_CXX]) AC_CACHE_CHECK([whether $CXX is a C++ compiler], [ensc_cv_cxx_cxxcompiler], - [ + [ AC_LANG_PUSH(C++) AC_COMPILE_IFELSE([ #include - ], - [ensc_cv_cxx_cxxcompiler=yes], - [ensc_cv_cxx_cxxcompiler=no]) + ], + [ensc_cv_cxx_cxxcompiler=yes], + [ensc_cv_cxx_cxxcompiler=no]) AC_LANG_POP(C++) - ]) + ]) AM_CONDITIONAL(ENSC_HAVE_CXX_COMPILER, - [test x"$ensc_cv_cxx_cxxcompiler" = xyes]) + [test x"$ensc_cv_cxx_cxxcompiler" = xyes]) if test x"$ensc_cv_cxx_cxxcompiler" = xno; then AC_MSG_WARN([*** some programs will not be built because a C++ compiler is lacking]) @@ -44,7 +44,7 @@ AC_DEFUN([ENSC_C99COMPILER], AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([whether $CC is a C99 compiler], [ensc_cv_c99_c99compiler], - [ + [ AC_LANG_PUSH(C) AC_COMPILE_IFELSE([ int main(int argc, char *argv[]) { @@ -52,14 +52,14 @@ int main(int argc, char *argv[]) { if (0) return 0; int b; } - ], - [ensc_cv_c99_c99compiler=yes], - [ensc_cv_c99_c99compiler=no]) + ], + [ensc_cv_c99_c99compiler=yes], + [ensc_cv_c99_c99compiler=no]) AC_LANG_POP(C) - ]) + ]) AM_CONDITIONAL(ENSC_HAVE_C99_COMPILER, - [test x"$ensc_cv_c99_c99compiler" = xyes]) + [test x"$ensc_cv_c99_c99compiler" = xyes]) if test x"$ensc_cv_c99_c99compiler" = xno; then AC_MSG_WARN([*** some programs will not be built because system is lacking a C99 compiler])