]> granicus.if.org Git - postgresql/commitdiff
Improve message wording for spinlocks-missing compilation error.
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 4 Nov 2003 09:53:36 +0000 (09:53 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 4 Nov 2003 09:53:36 +0000 (09:53 +0000)
src/include/storage/s_lock.h

index c300e2de7825ec5618e4baf378a93ece78b97d17..692cb7a7adbfa6ec5bd45cfab4254ead82558c6a 100644 (file)
@@ -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.116 2003/11/04 09:53:36 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 pgsql-bugs@postgresql.org.
+#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 pgsql-bugs@postgresql.org.
 #endif
 
 /*