Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
301 ashish 1
# ===========================================================================
2
#          http://autoconf-archive.cryp.to/ax_boost_filesystem.html
3
# ===========================================================================
4
#
5
# SYNOPSIS
6
#
7
#   AX_BOOST_FILESYSTEM
8
#
9
# DESCRIPTION
10
#
11
#   Test for Filesystem library from the Boost C++ libraries. The macro
12
#   requires a preceding call to AX_BOOST_BASE. Further documentation is
13
#   available at <http://randspringer.de/boost/index.html>.
14
#
15
#   This macro calls:
16
#
17
#     AC_SUBST(BOOST_FILESYSTEM_LIB)
18
#
19
#   And sets:
20
#
21
#     HAVE_BOOST_FILESYSTEM
22
#
23
# LAST MODIFICATION
24
#
25
#   2008-04-12
26
#
27
# COPYLEFT
28
#
29
#   Copyright (c) 2008 Thomas Porschberg <thomas@randspringer.de>
30
#   Copyright (c) 2008 Michael Tindal
31
#
32
#   Copying and distribution of this file, with or without modification, are
33
#   permitted in any medium without royalty provided the copyright notice
34
#   and this notice are preserved.
35
 
36
AC_DEFUN([AX_BOOST_FILESYSTEM],
37
[
38
	AC_ARG_WITH([boost-filesystem],
39
	AS_HELP_STRING([--with-boost-filesystem@<:@=special-lib@:>@],
40
                   [use the Filesystem library from boost - it is possible to specify a certain library for the linker
41
                        e.g. --with-boost-filesystem=boost_filesystem-gcc-mt ]),
42
        [
43
        if test "$withval" = "no"; then
44
			want_boost="no"
45
        elif test "$withval" = "yes"; then
46
            want_boost="yes"
47
            ax_boost_user_filesystem_lib=""
48
        else
49
		    want_boost="yes"
50
        	ax_boost_user_filesystem_lib="$withval"
51
		fi
52
        ],
53
        [want_boost="yes"]
54
	)
55
 
56
	if test "x$want_boost" = "xyes"; then
57
        AC_REQUIRE([AC_PROG_CC])
58
		CPPFLAGS_SAVED="$CPPFLAGS"
59
		CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
60
		export CPPFLAGS
61
 
62
		LDFLAGS_SAVED="$LDFLAGS"
63
		LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
64
		export LDFLAGS
65
 
66
        AC_CACHE_CHECK(whether the Boost::Filesystem library is available,
67
					   ax_cv_boost_filesystem,
68
        [AC_LANG_PUSH([C++])
69
         AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[@%:@include <boost/filesystem/path.hpp>]],
70
                                   [[using namespace boost::filesystem;
71
                                   path my_path( "foo/bar/data.txt" );
72
                                   return 0;]]),
73
            				       ax_cv_boost_filesystem=yes, ax_cv_boost_filesystem=no)
74
         AC_LANG_POP([C++])
75
		])
76
		if test "x$ax_cv_boost_filesystem" = "xyes"; then
77
			AC_DEFINE(HAVE_BOOST_FILESYSTEM,,[define if the Boost::Filesystem library is available])
78
            BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
79
            if test "x$ax_boost_user_filesystem_lib" = "x"; then
80
                for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;'` ; do
81
                     ax_lib=${libextension}
82
				    AC_CHECK_LIB($ax_lib, exit,
83
                                 [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
84
                                 [link_filesystem="no"])
85
  				done
86
                if test "x$link_program_options" != "xyes"; then
87
                for libextension in `ls $BOOSTLIBDIR/boost_filesystem*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_filesystem.*\)\.dll.*$;\1;' -e 's;^\(boost_filesystem.*\)\.a*$;\1;'` ; do
88
                     ax_lib=${libextension}
89
				    AC_CHECK_LIB($ax_lib, exit,
90
                                 [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
91
                                 [link_filesystem="no"])
92
  				done
93
	            fi
94
            else
95
               for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do
96
				      AC_CHECK_LIB($ax_lib, exit,
97
                                   [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break],
98
                                   [link_filesystem="no"])
99
                  done
100
 
101
            fi
102
			if test "x$link_filesystem" != "xyes"; then
103
				AC_MSG_ERROR(Could not link against $ax_lib !)
104
			fi
105
		fi
106
 
107
		CPPFLAGS="$CPPFLAGS_SAVED"
108
    	LDFLAGS="$LDFLAGS_SAVED"
109
	fi
110
])