We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc6ef426 commitde76246Copy full SHA for de76246
src/interfaces/ecpg/ecpglib/Makefile
@@ -4,7 +4,7 @@
4
#
5
# Copyright (c) 1994, Regents of the University of California
6
7
-# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.39 2006/04/28 02:53:20 tgl Exp $
+# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.40 2006/04/29 20:13:07 tgl Exp $
8
9
#-------------------------------------------------------------------------
10
@@ -25,9 +25,14 @@ override CFLAGS += $(PTHREAD_CFLAGS)
25
LIBS :=$(filter-out -lpgport,$(LIBS))
26
27
OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o\
28
-connect.o misc.o path.o exec.othread.o\
+connect.o misc.o path.o exec.o\
29
$(filter snprintf.o,$(LIBOBJS))
30
31
+# thread.c is needed only for non-WIN32 implementation of path.c
32
+ifneq ($(PORTNAME), win32)
33
+OBJS += thread.o
34
+endif
35
+
36
SHLIB_LINK = -L../pgtypeslib -lpgtypes$(libpq)\
37
$(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt -lm,$(LIBS))$(PTHREAD_LIBS)
38