there was an #include directive missing
[openmpi-llc.git] / config / cxx_find_template_parameters.m4
blobb2bcd1bca73fa26da0270d75c8addde258264343
1 dnl -*- shell-script -*-
2 dnl
3 dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
4 dnl                         University Research and Technology
5 dnl                         Corporation.  All rights reserved.
6 dnl Copyright (c) 2004-2005 The University of Tennessee and The University
7 dnl                         of Tennessee Research Foundation.  All rights
8 dnl                         reserved.
9 dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 
10 dnl                         University of Stuttgart.  All rights reserved.
11 dnl Copyright (c) 2004-2005 The Regents of the University of California.
12 dnl                         All rights reserved.
13 dnl $COPYRIGHT$
14 dnl 
15 dnl Additional copyrights may follow
16 dnl 
17 dnl $HEADER$
18 dnl
20 define(OMPI_CXX_FIND_TEMPLATE_PARAMETERS,[
22 # Arguments: none
24 # Dependencies: None
26 # Get the C++ compiler template parameters.
28 # Adds to CXXFLAGS
30 AC_MSG_CHECKING([for C++ compiler template parameters])
31 if test "$BASECXX" = "KCC"; then                              
32   new_flags="--one_instantiation_per_object"
33   CXXFLAGS="$CXXFLAGS $new_flags" 
34 else
35   new_flags="none needed"
37 AC_MSG_RESULT([$new_flags])
40 # Clean up
42 unset new_flags