add boost filesystem lib check

git-svn-id: http://encfs.googlecode.com/svn/trunk@18 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
Valient Gough 2008-04-16 03:09:30 +00:00
parent acaa244cbc
commit 2123f3580f
3 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,11 @@
Sun Apr 13 2008 Valient Gough <vgough@pobox.com> Sun Apr 13 2008 Valient Gough <vgough@pobox.com>
* switch to V6 XML config format using boost serialization module * fix bug in export - wasn't able to export symlinks.
Launchpad bug #201974
* add error checking to readlink call
* add recent changelog entries
* switch to V6 XML config format
* add better boost autoconf detection * add better boost autoconf detection
Fri Apr 11 2008 Valient Gough <vgough@pobox.com> Fri Apr 11 2008 Valient Gough <vgough@pobox.com>

View File

@ -45,6 +45,7 @@ ACX_PTHREAD
AX_BOOST_BASE([1.33]) AX_BOOST_BASE([1.33])
AX_BOOST_SERIALIZATION AX_BOOST_SERIALIZATION
AX_BOOST_FILESYSTEM
dnl Need to include any user specified flags in the tests below, as they might dnl Need to include any user specified flags in the tests below, as they might
dnl specify required include directories.. dnl specify required include directories..

View File

@ -2,7 +2,8 @@
include $(top_srcdir)/Makefile.common include $(top_srcdir)/Makefile.common
ALL_INCLUDES = @RLOG_CFLAGS@ @OPENSSL_CFLAGS@ @BOOST_CPPFLAGS@ ALL_INCLUDES = @RLOG_CFLAGS@ @OPENSSL_CFLAGS@ @BOOST_CPPFLAGS@
ALL_LDFLAGS = @RLOG_LIBS@ @OPENSSL_LIBS@ @FUSE_LIBS@ @BOOST_SERIALIZATION_LIB@ ALL_LDFLAGS = @RLOG_LIBS@ @OPENSSL_LIBS@ @FUSE_LIBS@
ALL_LDFLAGS += @BOOST_SERIALIZATION_LIB@ @BOOST_FILESYSTEM_LIB@
INCLUDES = $(all_includes) -I../intl INCLUDES = $(all_includes) -I../intl