mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
72a3902a66
As proof of concept, provide an alternate implementation based on POSIX semaphores. Also push the SysV shared-memory implementation into a separate file so that it can be replaced conveniently.
7 lines
232 B
Plaintext
7 lines
232 B
Plaintext
# -traditional-cpp means "don't use apple's cpp-precomp" on darwin
|
|
# this should change to -no-cpp-precomp when that flag is implemented
|
|
CC="$CC -traditional-cpp"
|
|
|
|
# Select appropriate semaphore support
|
|
USE_NAMED_POSIX_SEMAPHORES=1
|