projects
/
m4-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7d7eb4
)
Fix test for Boost version / presence
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 16 Jun 2011 08:00:21 +0000
(10:00 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 16 Jun 2011 08:00:21 +0000
(10:00 +0200)
BOOST_GOT_VERSION might be "" on new GCCs.
boost.m4
patch
|
blob
|
history
diff --git
a/boost.m4
b/boost.m4
index
bffcf4a
..
0540465
100644
(file)
--- a/
boost.m4
+++ b/
boost.m4
@@
-57,7
+57,8
@@
AC_DEFUN([ID_BOOST],
version_is:BOOST_VERSION
]])])
BOOST_GOT_VERSION=`(eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP version_is 2>/dev/null | cut -d ":" -f2`
- if test "$BOOST_GOT_VERSION" = "BOOST_VERSION"; then
+ if test -z "$BOOST_GOT_VERSION" -o \
+ "$BOOST_GOT_VERSION" = "BOOST_VERSION"; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([Boost development libraries required])
fi