This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch exp/next-build-ok has been updated
via 79263eb8957ea0cc946d73fc71cfdfd9f6b31abe (commit)
from 53a57b1d3275c5b9fb41db4b706342d6a7df992d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
79263eb configure.ac: Make Boost dependency optional.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
configure.ac | 36 ++++++++++++++++++++++--------------
2 files changed, 26 insertions(+), 14 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
---
ChangeLog | 4 ++++
configure.ac | 36 ++++++++++++++++++++++--------------
2 files changed, 26 insertions(+), 14 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 301ed5d..00d8c12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-13 Guillaume Lazzara <z(a)lrde.epita.fr>
+
+ * configure.ac: Make Boost dependency optional.
+
2010-08-12 Guillaume Lazzara <z(a)lrde.epita.fr>
* build-aux/build_unit_test.sh: Handle composed dependency names
diff --git a/configure.ac b/configure.ac
index 108b827..ce1a5a2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -215,20 +215,28 @@ if test "x$with_boost" != xno; then
AC_MSG_RESULT([* Boost])
AC_MSG_RESULT([-------])
- # Preprocessor
- BOOST_FIND_HEADER([boost/preprocessor/repetition/repeat.hpp],
- oln_have_boost_preprocessor="no",
- oln_have_boost_preprocessor="yes")
- if test "x$oln_have_boost_preprocessor" = xyes; then
- AC_DEFINE([HAVE_BOOST_PREPROCESSOR], 1, [Define to 1 if we can use Boost Preprocessor.])
- fi
+ # Is Boost installed?
+ BOOST_REQUIRE([], oln_have_boost=no)
+
+ if test "x$oln_have_boost" != xno; then
+
+ # Preprocessor
+ BOOST_FIND_HEADER([boost/preprocessor/repetition/repeat.hpp],
+ oln_have_boost_preprocessor=no,
+ oln_have_boost_preprocessor=yes)
+ if test "x$oln_have_boost_preprocessor" = xyes; then
+ AC_DEFINE([HAVE_BOOST_PREPROCESSOR], 1,
+ [Define to 1 if we can use Boost Preprocessor.])
+ fi
- # Tuple
- BOOST_FIND_HEADER([boost/tuple/tuple.hpp],
- oln_have_boost_tuple=no,
- oln_have_boost_tuple=yes)
- if test "x$oln_have_boost_tuple" = xyes; then
- AC_DEFINE([HAVE_BOOST_TUPLE], 1, [Define to 1 if we can use Boost Tuple.])
+ # Tuple
+ BOOST_FIND_HEADER([boost/tuple/tuple.hpp],
+ oln_have_boost_tuple=no,
+ oln_have_boost_tuple=yes)
+ if test "x$oln_have_boost_tuple" = xyes; then
+ AC_DEFINE([HAVE_BOOST_TUPLE], 1,
+ [Define to 1 if we can use Boost Tuple.])
+ fi
fi
fi
--
1.5.6.5
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch exp/next has been deleted
was 53a57b1d3275c5b9fb41db4b706342d6a7df992d
-----------------------------------------------------------------------
53a57b1d3275c5b9fb41db4b706342d6a7df992d Fix compilation with g++-3.3 in Milena.
-----------------------------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch exp/milena-z has been deleted
was 53a57b1d3275c5b9fb41db4b706342d6a7df992d
-----------------------------------------------------------------------
53a57b1d3275c5b9fb41db4b706342d6a7df992d Fix compilation with g++-3.3 in Milena.
-----------------------------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch exp/scribo-z has been updated
via 2434455d28293575f4bacc80f3e7bb3cd648c3c0 (commit)
via 565a8acd20101cf22d58b674d4d1695d8e9926c6 (commit)
via 7671c7df2acc25243c83131813db612be8a654b2 (commit)
via 15a057175710227bdea5a9702dcbf5bd64704a9d (commit)
from 53a57b1d3275c5b9fb41db4b706342d6a7df992d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
2434455 Merge branch 'exp/scribo-z' into next
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 28 +++++
milena/mln/io/magick/load.hh | 202 ++++++++++++++++++------------------
milena/mln/io/magick/save.hh | 144 ++++++++++++++-----------
milena/sandbox/ChangeLog | 44 ++++----
milena/tests/io/magick/Makefile.am | 8 +-
milena/tests/io/magick/load.cc | 72 +++++++++++--
milena/tests/io/magick/save.cc | 86 +++++++++++++--
scribo/ChangeLog | 7 ++
8 files changed, 381 insertions(+), 210 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform