diff options
author | Tom Lane <tgl@fedoraproject.org> | 2010-03-14 03:48:10 +0000 |
---|---|---|
committer | Tom Lane <tgl@fedoraproject.org> | 2010-03-14 03:48:10 +0000 |
commit | 446c31a8ed98ee070df29017a7752f6cfc08b3a4 (patch) | |
tree | 52ea8ff894df385b04fbb30decaa4566f3a5f8e8 /postgresql-dtrace.patch | |
parent | 9cc5f2029d4bcbe0297d7f106892bdf5602c24ca (diff) | |
download | postgresql-setup-postgresql-8_4_3-1_fc14.tar.gz postgresql-setup-postgresql-8_4_3-1_fc14.tar.xz postgresql-setup-postgresql-8_4_3-1_fc14.zip |
Update to PostgreSQL 8.4.3postgresql-8_4_3-1_fc14
Diffstat (limited to 'postgresql-dtrace.patch')
-rw-r--r-- | postgresql-dtrace.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/postgresql-dtrace.patch b/postgresql-dtrace.patch deleted file mode 100644 index 947a347..0000000 --- a/postgresql-dtrace.patch +++ /dev/null @@ -1,28 +0,0 @@ -Latest systemtap versions require the probes.o file after all, per bug #557266. -This patch will be incorporated upstream soon. - - -diff -Naur postgresql-8.4.2.orig/src/backend/Makefile postgresql-8.4.2/src/backend/Makefile ---- postgresql-8.4.2.orig/src/backend/Makefile 2009-09-05 17:14:13.000000000 -0400 -+++ postgresql-8.4.2/src/backend/Makefile 2010-01-20 17:21:37.000000000 -0500 -@@ -20,13 +20,13 @@ - - include $(srcdir)/common.mk - --# As of 9/2009: --# * The probes.o file is necessary for dtrace support on Solaris. --# * OS X's dtrace doesn't use it and doesn't even recognize the -G option. --# * Systemtap's dtrace will take -G, but it produces a useless empty file. --# So, build probes.o only on Solaris. --# This will likely need adjustment as other platforms add dtrace support. --ifeq ($(PORTNAME), solaris) -+# As of 1/2010: -+# The probes.o file is necessary for dtrace support on Solaris, and on recent -+# versions of systemtap. (Older systemtap releases just produce an empty -+# file, but that's okay.) However, OS X's dtrace doesn't use it and doesn't -+# even recognize the -G option. So, build probes.o except on Darwin. -+# This might need adjustment as other platforms add dtrace support. -+ifneq ($(PORTNAME), darwin) - ifeq ($(enable_dtrace), yes) - LOCALOBJS += utils/probes.o - endif |