drm: Branch 'master'
[email protected] (Emil Velikov)
| Newsgroups | gmane.comp.video.dri.patches |
|---|---|
| Message-ID | <[email protected]> |
configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 0010d312dbf0dae05652b75cdef7cd361f686623 Author: Emil Velikov <[email protected]> Date: Wed Apr 5 17:21:29 2017 +0100 configure.ac: pthread-stubs is not a thing on GNU/kFreeBSD As mentioned on the xcb mailing list, the platform uses the GLIBC forwarding mechanism. https://lists.freedesktop.org/archives/xcb/2016-November/010896.html Reported-by: Andreas Boll <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Andreas Boll <[email protected]> diff --git a/configure.ac b/configure.ac index 036f65a2..7b9369be 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ LT_INIT([disable-static]) dnl pthread-stubs is mandatory on BSD platforms, due to the nature of the dnl project. Even then there's a notable issue as described in the project README case "$host_os" in -linux* | cygwin* | darwin* | solaris* | gnu*) +linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu*) pthread_stubs_possible="no" ;; * ) ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot --