From 2123f3580f8b957509c178066e29bb1ecbdbfdf1 Mon Sep 17 00:00:00 2001 From: Valient Gough Date: Wed, 16 Apr 2008 03:09:30 +0000 Subject: [PATCH] add boost filesystem lib check git-svn-id: http://encfs.googlecode.com/svn/trunk@18 db9cf616-1c43-0410-9cb8-a902689de0d6 --- ChangeLog | 7 ++++++- configure.ac | 1 + encfs/Makefile.am | 3 ++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 15e0b27..2e3217d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ + Sun Apr 13 2008 Valient Gough - * 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 Fri Apr 11 2008 Valient Gough diff --git a/configure.ac b/configure.ac index ae6f1a6..87d650a 100644 --- a/configure.ac +++ b/configure.ac @@ -45,6 +45,7 @@ ACX_PTHREAD AX_BOOST_BASE([1.33]) AX_BOOST_SERIALIZATION +AX_BOOST_FILESYSTEM dnl Need to include any user specified flags in the tests below, as they might dnl specify required include directories.. diff --git a/encfs/Makefile.am b/encfs/Makefile.am index 0b7e7ca..6639700 100644 --- a/encfs/Makefile.am +++ b/encfs/Makefile.am @@ -2,7 +2,8 @@ include $(top_srcdir)/Makefile.common 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