]> granicus.if.org Git - postgresql/blob - src/template/darwin
Remove vestigial resolveUnknown arguments from transformSortClause etc.
[postgresql] / src / template / darwin
1 # src/template/darwin
2
3 # Note: Darwin is the original code name for macOS, also known as OS X.
4 # We still use "darwin" as the port name, partly because config.guess does.
5
6 # Select appropriate semaphore support.  Darwin 6.0 (macOS 10.2) and up
7 # support System V semaphores; before that we have to use named POSIX
8 # semaphores, which are less good for our purposes because they eat a
9 # file descriptor per backend per max_connection slot.
10 case $host_os in
11   darwin[015].*)
12     USE_NAMED_POSIX_SEMAPHORES=1
13     ;;
14   *)
15     USE_SYSV_SEMAPHORES=1
16     ;;
17 esac