diff options
author | Emil Velikov <[email protected]> | 2017-03-02 19:02:45 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-15 11:49:27 +0000 |
commit | 8a5680f248e7d8362710a91041020c30ee15e2c6 (patch) | |
tree | 21881bcc9bc3b307c8e18c265339722436d0cf81 /configure.ac | |
parent | eec0cd71cdbefddccebd5fe895ca7d017f1148fe (diff) |
configure.ac: bump pthread-stubs requirement
On platforms that require it, we bump the requirement to 0.4 or later.
Due to an issue with the project [design] any version earlier than it,
is bound to cause issues. For the specifics see the pthread-stubs README
Cc: Uli Schlachter <[email protected]>
Cc: Jonathan Gray <[email protected]>
Cc: Jean-Sébastien Pédron <[email protected]>
Cc: François Tigeot <[email protected]>
Cc: Tobias Nygren <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2adf399c9b0..8c9d756f294 100644 --- a/configure.ac +++ b/configure.ac @@ -812,7 +812,7 @@ linux* | cygwin* | darwin* | solaris* | gnu*) esac if test "x$pthread_stubs_possible" = xyes; then - PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs) + PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs >= 0.4) AC_SUBST(PTHREADSTUBS_CFLAGS) AC_SUBST(PTHREADSTUBS_LIBS) fi |