Skip to content
Snippets Groups Projects
Commit 8abf0b4a authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal: require LAL to be built with locking enabled

parent 798aa70b
No related branches found
No related merge requests found
......@@ -260,7 +260,9 @@ CFLAGS="$CFLAGS ${LAL_CFLAGS}"
AC_CHECK_DECL([LAL_PTHREAD_LOCK], [HAVE_LAL_PTHREAD_LOCK=yes], [HAVE_LAL_PTHREAD_LOCK=no], [#include <lal/LALConfig.h>])
CFLAGS="$old_CFLAGS"
AS_IF([test "x$HAVE_LAL_PTHREAD_LOCK" = "xyes"], AC_DEFINE([HAVE_LAL_PTHREAD_LOCK]))
AS_IF([test "x$HAVE_LAL_PTHREAD_LOCK" != "xyes"], [
AC_MSG_FAILURE([lal must be built with pthread locking enabled])
])
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment