blob: bcb3fa44ff0b2f50f2d7d8cac95fb8c499e3d9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#
# SYNOPSIS
#
# AX_BOOST_FILESYSTEM
#
# DESCRIPTION
#
# Test for Filesystem library from the Boost C++ libraries. The macro
# requires a preceding call to AX_BOOST_BASE.
#
# This macro calls:
#
# AC_SUBST(BOOST_FILESYSTEM_LIB)
#
# And sets:
#
# HAVE_BOOST_FILESYSTEM
#
# COPYLEFT
#
# Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
# Copyright (c) 2008 Michael Tindal
# Copyright (c) 2008 Free Software Foundation, Inc.
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice
# and this notice are preserved.
AC_DEFUN([AX_BOOST_FILESYSTEM],
[
AC_REQUIRE([AX_BOOST_BASE])
dnl depends on boost_system
AC_REQUIRE([AX_BOOST_SYSTEM])
axbf_LDFLAGS_SAVED=$LDFLAGS
LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LIB"
_AX_BOOST_CHECK([boost_filesystem],
[@%:@include <boost/filesystem/path.hpp>],
[using namespace boost::filesystem;
path my_path( "foo/bar/data.txt" );
return 0;])
LDFLAGS=$axbf_LDFLAGS_SAVED
])
|