1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Only build in crashdump support on Windows if there's a working dbghelp.h.

This commit is contained in:
Andrew Dunstan
2010-12-26 10:34:47 -05:00
parent 85cff3ce7f
commit a534728afb
7 changed files with 147 additions and 2 deletions

View File

@@ -12,6 +12,9 @@ subdir = src/backend/port/win32
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = timer.o socket.o signal.o security.o mingwcompat.o crashdump.o
OBJS = timer.o socket.o signal.o security.o mingwcompat.o
ifeq ($(have_win32_dbghelp), yes)
OBJS += crashdump.o
endif
include $(top_srcdir)/src/backend/common.mk