Skip to content

Commit

Permalink
m4 script: avoid bombing when the capability is not found. Note that …
Browse files Browse the repository at this point in the history
…this script is currently not used, it may be useful in the future

git-svn-id: https://valelab.ucsf.edu/svn/micromanager2/trunk@15600 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
  • Loading branch information
nico committed Jul 8, 2015
1 parent ff7c640 commit 0745642
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions m4/ax_boost_atomic.m4
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,13 @@ AC_DEFUN([AX_BOOST_ATOMIC],
done
fi
if test "x$ax_lib" = "x"; then
AC_MSG_ERROR(Could not find a version of the library!)
fi
if test "x$link_atomic" = "xno"; then
AC_MSG_ERROR(Could not link against $ax_lib !)
fi
# we do not want to abort when the library is not found
#if test "x$ax_lib" = "x"; then
# AC_MSG_ERROR(Could not find a version of the library!)
# fi
# if test "x$link_atomic" = "xno"; then
# AC_MSG_ERROR(Could not link against $ax_lib !)
# fi
fi
CPPFLAGS="$CPPFLAGS_SAVED"
Expand Down

0 comments on commit 0745642

Please sign in to comment.