Fix build on -CURRENT now that we no longer have default PTHREAD_CFLAGS.
Basically, all modern, supported versions of FreeBSD are thread-safe, so just assume we have pthread.h. Reported by: bento via kris
This commit is contained in:
parent
491f1f453f
commit
e3ff1a49e4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=110855
2 changed files with 0 additions and 6 deletions
|
@ -38,7 +38,6 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef _THREAD_SAFE
|
||||
# include <pthread.h>
|
||||
|
||||
/*
|
||||
|
@ -118,5 +117,3 @@ int
|
|||
lp_mutex_destroy_ (pthread_mutex_t ** mutex) {}
|
||||
|
||||
# endif /* (defined(BSD) && (BSD >= 199103)) */
|
||||
|
||||
#endif /* _THREAD_SAFE */
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef _THREAD_SAFE
|
||||
# include <pthread.h>
|
||||
|
||||
/*
|
||||
|
@ -118,5 +117,3 @@ int
|
|||
lp_mutex_destroy_ (pthread_mutex_t ** mutex) {}
|
||||
|
||||
# endif /* (defined(BSD) && (BSD >= 199103)) */
|
||||
|
||||
#endif /* _THREAD_SAFE */
|
||||
|
|
Loading…
Reference in a new issue