Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / template / darwin
blobf9090828b17680fb184254a04b6527fd7ab3fe85
1 # $PostgreSQL$
3 # Apple's cpp-precomp seems a tad broken, so don't use it
4 # (Note: on OS X before 10.2, you might need -traditional-cpp instead)
5 CC="$CC -no-cpp-precomp"
7 # Select appropriate semaphore support.  Darwin 6.0 (Mac OS X 10.2) and up
8 # support System V semaphores; before that we have to use POSIX semaphores,
9 # which are less good for our purposes because they eat a file descriptor
10 # per backend per max_connection slot.
11 case $host_os in
12   darwin[015].*)
13     USE_NAMED_POSIX_SEMAPHORES=1
14     ;;
15   *)
16     USE_SYSV_SEMAPHORES=1
17     ;;
18 esac