diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-04 23:11:05 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-04 23:11:05 +0000 |
commit | db13a81ab44f5ead85a4e77b30006c81bb6d20af (patch) | |
tree | 55dc61beea80b46d95a23c4de2f80311df995fe1 | |
parent | 47ef623c0bd35b90bb7861c036ccf45a86feaae8 (diff) | |
download | postgresql-db13a81ab44f5ead85a4e77b30006c81bb6d20af.tar.gz postgresql-db13a81ab44f5ead85a4e77b30006c81bb6d20af.zip |
Revert ill-considered restriction of dtrace support to Solaris only.
-rw-r--r-- | src/backend/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index 1621530e95e..3ac64bf4abb 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -5,7 +5,7 @@ # Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/backend/Makefile,v 1.134 2009/08/28 20:26:18 petere Exp $ +# $PostgreSQL: pgsql/src/backend/Makefile,v 1.135 2009/09/04 23:11:05 tgl Exp $ # #------------------------------------------------------------------------- @@ -20,11 +20,9 @@ SUBDIRS = access bootstrap catalog parser commands executor foreign lib libpq \ include $(srcdir)/common.mk -ifeq ($(PORTNAME), solaris) ifeq ($(enable_dtrace), yes) LOCALOBJS += utils/probes.o endif -endif OBJS = $(SUBDIROBJS) $(LOCALOBJS) $(top_builddir)/src/port/libpgport_srv.a @@ -145,10 +143,8 @@ $(top_builddir)/src/include/utils/probes.h: utils/probes.h $(LN_S) ../../../$(subdir)/utils/probes.h . -ifeq ($(PORTNAME), solaris) utils/probes.o: utils/probes.d $(SUBDIROBJS) $(DTRACE) $(DTRACEFLAGS) -C -G -s $(call expand_subsys,$^) -o $@ -endif ########################################################################## |