gr-qtgui: add include file for gcc 4.4.1
[debian/gnuradio] / config / ax_boost_test_exec_monitor.m4
1 #
2 # SYNOPSIS
3 #
4 #   AX_BOOST_TEST_EXEC_MONITOR
5 #
6 # DESCRIPTION
7 #
8 #   Test for Test_Exec_Monitor library from the Boost C++ libraries. The
9 #   macro requires a preceding call to AX_BOOST_BASE.
10 #
11 #   This macro calls:
12 #
13 #     AC_SUBST(BOOST_TEST_EXEC_MONITOR_LIB)
14 #
15 #   And sets:
16 #
17 #     HAVE_BOOST_TEST_EXEC_MONITOR
18 #
19 # COPYLEFT
20 #
21 #   Copyright (c) 2008 Dodji Seketeli <dodji@seketeli.org>
22 #   Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
23 #   Copyright (c) 2008 Free Software Foundation, Inc.
24 #
25 #   Copying and distribution of this file, with or without modification, are
26 #   permitted in any medium without royalty provided the copyright notice
27 #   and this notice are preserved.
28
29 AC_DEFUN([AX_BOOST_TEST_EXEC_MONITOR],
30 [
31     AC_REQUIRE([AX_BOOST_BASE])
32     _AX_BOOST_CHECK([boost_test_exec_monitor],
33                     [@%:@include <boost/test/test_tools.hpp>],
34                     [int i=1 ; BOOST_REQUIRE(i==1); ; return 0;])
35 ])