We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7008dfe commit 70cae29Copy full SHA for 70cae29
src/port/meson.build
@@ -66,6 +66,10 @@ replace_funcs_neg = [
66
['strnlen'],
67
]
68
69
+if host_system != 'win32'
70
+ replace_funcs_neg += [['pthread_barrier_wait']]
71
+endif
72
+
73
# Replacement functionality to be built if corresponding configure symbol
74
# is true
75
replace_funcs_pos = [
@@ -130,9 +134,6 @@ if (host_system == 'win32' or host_system == 'cygwin') and \
130
134
host_system, cc.get_id(), cc.version()))
131
135
endif
132
136
133
-if not cdata.has('HAVE_PTHREAD_BARRIER_WAIT') and host_system != 'win32'
- pgport_sources += files('pthread_barrier_wait.c')
-endif
137
138
139
# Build pgport once for backend, once for use in frontend binaries, and once
0 commit comments