5
5
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
6
6
# Portions Copyright (c) 1994, Regents of the University of California
7
7
#
8
- # $PostgreSQL: pgsql/src/backend/Makefile,v 1.140 2010/01/15 09:18:59 heikki Exp $
8
+ # $PostgreSQL: pgsql/src/backend/Makefile,v 1.141 2010/01/20 23:12:03 tgl Exp $
9
9
#
10
10
# -------------------------------------------------------------------------
11
11
@@ -20,13 +20,13 @@ SUBDIRS = access bootstrap catalog parser commands executor foreign lib libpq \
20
20
21
21
include $(srcdir ) /common.mk
22
22
23
- # As of 9/2009 :
24
- # * The probes.o file is necessary for dtrace support on Solaris.
25
- # * OS X's dtrace doesn't use it and doesn't even recognize the -G option.
26
- # * Systemtap 's dtrace will take -G, but it produces a useless empty file.
27
- # So, build probes.o only on Solaris .
28
- # This will likely need adjustment as other platforms add dtrace support.
29
- ifeq ($(PORTNAME ) , solaris )
23
+ # As of 1/2010 :
24
+ # The probes.o file is necessary for dtrace support on Solaris, and on recent
25
+ # versions of systemtap. (Older systemtap releases just produce an empty
26
+ # file, but that 's okay.) However, OS X's dtrace doesn't use it and doesn't
27
+ # even recognize the -G option. So, build probes.o except on Darwin .
28
+ # This might need adjustment as other platforms add dtrace support.
29
+ ifneq ($(PORTNAME ) , darwin )
30
30
ifeq ($(enable_dtrace ) , yes)
31
31
LOCALOBJS += utils/probes.o
32
32
endif
0 commit comments