diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-04 23:11:10 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-04 23:11:10 +0000 |
commit | 71c4a7b94e65db25ff5804651710a42a104206bf (patch) | |
tree | 118c895c6453d6ea9f2703012f5afcbd78e61fba | |
parent | a3cd02e97a0037c9774faa8aeee56d3c4da2d790 (diff) | |
download | postgresql-71c4a7b94e65db25ff5804651710a42a104206bf.tar.gz postgresql-71c4a7b94e65db25ff5804651710a42a104206bf.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 86526d5f1af..b98cb5620be 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.132 2009/01/01 17:23:34 momjian Exp $ +# $PostgreSQL: pgsql/src/backend/Makefile,v 1.132.2.1 2009/09/04 23:11:10 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 ########################################################################## |