1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-01 06:17:04 +02:00

build: adjust for recent gnulib pthread changes

Discussed in https://lists.gnu.org/r/coreutils/2019-08/msg00030.html .

* bootstrap.conf (gnulib_modules): Replace 'pthread' with
pthread-* modules.
* src/sort.c: Remove GNULIB_defined_pthread_functions conditional.
This commit is contained in:
Bruno Haible
2019-08-11 21:29:00 -06:00
committed by Assaf Gordon
parent 725c8d6bed
commit a3d070fa32
2 changed files with 4 additions and 6 deletions
+4 -1
View File
@@ -196,7 +196,10 @@ gnulib_modules="
priv-set
progname
propername
pthread
pthread-cond
pthread-mutex
pthread-thread
pthread_sigmask
putenv
quote
quotearg
-5
View File
@@ -82,11 +82,6 @@ struct rlimit { size_t rlim_cur; };
# endif
#endif
#if GNULIB_defined_pthread_functions
# undef pthread_sigmask
# define pthread_sigmask(how, set, oset) sigprocmask (how, set, oset)
#endif
#if !defined OPEN_MAX && defined NR_OPEN
# define OPEN_MAX NR_OPEN
#endif