summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2003-11-04 09:43:56 +0000
committerPeter Eisentraut2003-11-04 09:43:56 +0000
commit77a8f230cc44b05617228ec94e79c5d2561470e5 (patch)
tree97031df69da0a7e997ca4a48ecb490770d8ffb8a
parentf651e7cfbe5091fe7cf58319829ef26a8e92f6c2 (diff)
Improve wording of spinlocks-missing compilation error message.
-rw-r--r--src/include/storage/s_lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h
index c300e2de782..578d8cfdd4e 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.115 2003/10/10 03:58:57 momjian Exp $
+ * $Id: s_lock.h,v 1.115.2.1 2003/11/04 09:43:56 petere 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 --disable-spinlocks. However, performance will be poor. Please report this to [email protected].
+#error PostgreSQL does not have native spinlock support on this platform. To continue the compilation, rerun configure using --disable-spinlocks. However, performance will be poor. Please report this to [email protected].
#endif
/*