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 next has been updated
via c6904964636040aa2cf81dbe4f0c9f26078e8fac (commit)
from 565a8acd20101cf22d58b674d4d1695d8e9926c6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list …
[View More]those
revisions in full, below.
- Log -----------------------------------------------------------------
c690496 Have AC_PROG_SWIG be more flexible w.r.t. major/minor version numbers.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
m4/swig.m4 | 9 ++++++---
2 files changed, 12 insertions(+), 3 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
[View Less]
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 fix-scribo-lib-deps has been deleted
was 565a8acd20101cf22d58b674d4d1695d8e9926c6
-----------------------------------------------------------------------
565a8acd20101cf22d58b674d4d1695d8e9926c6 Fix Scribo's dependencies w.r.t. libraries.
-----------------------…
[View More]------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
[View Less]
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 7aad3ee217c527eef754831822f2067fad7c3adb (commit)
via 38c94688a42d132ad9b2b8d5b2ff8a7914e1f8cd (commit)
from 79263eb8957ea0cc946d73fc71cfdfd9f6b31abe (commit)
Those revisions listed above that are new to …
[View More]this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
7aad3ee src/Makefile.am: Remove useless flags. Aesthetic changes.
38c9468 configure.ac: Handle ImageMagick++ dependency with both dpk-config and OLN_WITH_LIB.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
configure.ac | 47 ++++++++++++++++++++++++++++++-----------------
scribo/ChangeLog | 4 ++++
scribo/src/Makefile.am | 21 +++++++++------------
4 files changed, 48 insertions(+), 29 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
[View Less]
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;…
[View More] 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
[View Less]
---
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 --…
[View More]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
[View Less]
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.
--------------------------------------…
[View More]---------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
[View Less]
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.
----------------------------------…
[View More]-------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
[View Less]