From 190187e0dbc8274072bba3387da79be4d85c2a00 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Wed, 30 Aug 2023 14:30:05 +0200 Subject: [PATCH] Meson: Formatting cleanup of pthread headers module --- meson/pthread-headers/meson.build | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/meson/pthread-headers/meson.build b/meson/pthread-headers/meson.build index fbc492e7ef..9b2bdc0f24 100644 --- a/meson/pthread-headers/meson.build +++ b/meson/pthread-headers/meson.build @@ -1,6 +1,15 @@ dep_threads = dependency('threads') -have_pthread_h = cxx.check_header('pthread.h', dependencies: dep_threads, required: true) -have_pthread_np_h = cxx.check_header('pthread_np.h', dependencies: dep_threads, prefix: '#include ') + +have_pthread_h = cxx.check_header( + 'pthread.h', + dependencies: dep_threads, + required: true, +) +have_pthread_np_h = cxx.check_header( + 'pthread_np.h', + dependencies: dep_threads, + prefix: '#include ', +) conf.set('HAVE_PTHREAD_NP_H', have_pthread_np_h, description: 'Have ') -- 2.47.3