* [gentoo-commits] gentoo-x86 commit in dev-db/postgresql-docs/files: postgresql-9.0-common.patch
@ 2010-02-26 15:48 99% Patrick Lauer (patrick)
0 siblings, 0 replies; 1+ results
From: Patrick Lauer (patrick) @ 2010-02-26 15:48 UTC (permalink / raw
To: gentoo-commits
patrick 10/02/26 15:48:03
Added: postgresql-9.0-common.patch
Log:
Bump to 9.0_alpha4
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-db/postgresql-docs/files/postgresql-9.0-common.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-docs/files/postgresql-9.0-common.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/postgresql-docs/files/postgresql-9.0-common.patch?rev=1.1&content-type=text/plain
Index: postgresql-9.0-common.patch
===================================================================
=== configure.in
==================================================================
--- configure.in 2009-06-27 02:14:47.000000000 +0200
+++ configure.in 2009-07-09 15:05:02.000000000 +0200
@@ -19,10 +19,6 @@
AC_INIT([PostgreSQL], [9.0alpha4], [pgsql-bugs@postgresql.org])
-m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.63], [], [m4_fatal([Autoconf version 2.63 is required.
-Untested combinations of 'autoconf' and PostgreSQL versions are not
-recommended. You can remove the check from 'configure.in' but it is then
-your responsibility whether the result works or not.])])
AC_COPYRIGHT([Copyright (c) 1996-2010, PostgreSQL Global Development Group])
AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
AC_CONFIG_AUX_DIR(config)
=== src/include/storage/s_lock.h
==================================================================
--- src/include/storage/s_lock.h 2009-01-01 18:24:01.000000000 +0100
+++ src/include/storage/s_lock.h 2009-07-09 15:03:08.000000000 +0200
@@ -298,6 +298,29 @@
#endif /* __s390__ || __s390x__ */
+#if defined(__sh__)
+#define HAS_TEST_AND_SET
+
+typedef unsigned char slock_t;
+
+#define TAS(lock) tas(lock)
+
+static __inline__ int
+tas(volatile slock_t *lock)
+{
+ register int _res = 1;
+
+ __asm__ __volatile__(
+ "tas.b @%1\n\t"
+ "movt %0\n\t"
+ "xor #1,%0"
+: "=z"(_res)
+: "r"(lock)
+: "t","memory");
+ return _res;
+}
+
+#endif /* __sh__ */
#if defined(__sparc__) /* Sparc */
#define HAS_TEST_AND_SET
=== src/makefiles/Makefile.darwin
==================================================================
--- src/makefiles/Makefile.darwin 2008-11-14 11:22:47.000000000 +0100
+++ src/makefiles/Makefile.darwin 2009-07-09 15:07:11.000000000 +0200
@@ -5,7 +5,15 @@
CFLAGS_SL =
ifdef PGXS
+ifdef PGXS_IN_SERVER
+ifndef PGXS_WITH_SERVER
+BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres
+else
+BE_DLLLIBS= -bundle_loader ${PGXS_WITH_SERVER}
+endif
+else
BE_DLLLIBS= -bundle_loader $(bindir)/postgres
+endif
else
BE_DLLLIBS= -bundle_loader $(top_builddir)/src/backend/postgres
endif
^ permalink raw reply [relevance 99%]
Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2010-02-26 15:48 99% [gentoo-commits] gentoo-x86 commit in dev-db/postgresql-docs/files: postgresql-9.0-common.patch Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox