Skip to content

Commit 7b6e707

Browse files
committed
Remove unnecessary macOS 15 bug CFLAGS from PostgreSQL build configuration
1 parent 0114700 commit 7b6e707

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/SPC/builder/unix/library/postgresql.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,8 @@ protected function build(): void
4949
$spc = new SPCConfigUtil($this->getBuilder(), ['no_php' => true, 'libs_only_deps' => true]);
5050
$config = $spc->config(libraries: $libs, include_suggest_lib: $this->builder->getOption('with-suggested-libs'));
5151

52-
$macos_15_bug_cflags = PHP_OS_FAMILY === 'Darwin' ? '' : '';
53-
5452
$env_vars = [
55-
'CFLAGS' => "{$config['cflags']} -fno-ident{$macos_15_bug_cflags}",
53+
'CFLAGS' => "{$config['cflags']} -fno-ident",
5654
'CPPFLAGS' => '-DPIC',
5755
'LDFLAGS' => $config['ldflags'],
5856
'LIBS' => $config['libs'],

0 commit comments

Comments
 (0)