From: Fred Morcos Date: Wed, 30 Aug 2023 12:30:05 +0000 (+0200) Subject: Meson: Formatting cleanup of pthread headers module X-Git-Tag: rec-5.1.0-alpha1~80^2~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=190187e0dbc8274072bba3387da79be4d85c2a00;p=thirdparty%2Fpdns.git Meson: Formatting cleanup of pthread headers module --- 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 ')