diff options
author | Bruce Momjian | 2003-09-29 04:20:22 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-09-29 04:20:22 +0000 |
commit | f7fca96366bc9db9771c14c7b71f5f750085f389 (patch) | |
tree | b739feb11ff9dfbe3055f2a1758376451fecab5c | |
parent | 3e4b208285f6ffd9a1f6db4eb4c1b61b80e2a349 (diff) |
Fix #error message to mention renamed option --disable-spinlocks.
-rw-r--r-- | src/include/storage/s_lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 4d49c52c711..01956bc796a 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -63,7 +63,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: s_lock.h,v 1.113 2003/09/12 16:10:27 momjian Exp $ + * $Id: s_lock.h,v 1.114 2003/09/29 04:20:22 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -540,7 +540,7 @@ extern slock_t wc_tas(volatile slock_t *lock); #else /* HAS_TEST_AND_SET */ #ifdef HAVE_SPINLOCKS -#error This platform does not support native spinlocks. To continue the compile, rerun configure using --without-spinlocks. However, performance will be poor. Please report this to pgsql-bugs@postgresql.org. +#error This platform does not support native spinlocks. To continue the compile, rerun configure using --disable-spinlocks. However, performance will be poor. Please report this to pgsql-bugs@postgresql.org. #endif /* |