Re: [ovs-dev] [PATCH 1/4] configure.ac: More enhanced check for pthread library.

2018-12-10 Thread Ben Pfaff
On Mon, Dec 10, 2018 at 08:05:20PM +0300, Ilya Maximets wrote: > FreeBSD 12 supports 'pthread_rwlock_tryrdlock' without 'pthread' > library. Let's add check for more rare function. > OTOH, Travis-CI environment supports 'pthread_rwlockattr_destroy', > but does not support

[ovs-dev] [PATCH 1/4] configure.ac: More enhanced check for pthread library.

2018-12-10 Thread Ilya Maximets
FreeBSD 12 supports 'pthread_rwlock_tryrdlock' without 'pthread' library. Let's add check for more rare function. OTOH, Travis-CI environment supports 'pthread_rwlockattr_destroy', but does not support 'pthread_rwlock_tryrdlock' without 'pthread'. So, both checks needed. Signed-off-by: Ilya