Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc86ce06

Browse files
committed
DLL_DEFFILE should be defined when PORTNAME is win32, not when it isn't,
per the example of libpq/Makefile.
1 parent746593e commitc86ce06

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

‎src/interfaces/ecpg/compatlib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.34 2007/10/0407:58:15 meskes Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.35 2007/10/0418:32:07 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -29,7 +29,7 @@ LIBS := $(filter-out -lpgport, $(LIBS))
2929

3030
OBJS= informix.o$(filter snprintf.o,$(LIBOBJS))
3131

32-
ifneq ($(PORTNAME), win32)
32+
ifeq ($(PORTNAME), win32)
3333
DLL_DEFFILE=libecpg_compatdll.def
3434
endif
3535

‎src/interfaces/ecpg/ecpglib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.50 2007/10/0407:58:15 meskes Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.51 2007/10/0418:32:07 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -31,14 +31,14 @@ OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
3131
# thread.c is needed only for non-WIN32 implementation of path.c
3232
ifneq ($(PORTNAME), win32)
3333
OBJS += thread.o
34-
DLL_DEFFILE=libecpgdll.def
3534
endif
3635

3736
SHLIB_LINK = -L../pgtypeslib -lpgtypes$(libpq) -lm$(PTHREAD_LIBS)
3837

3938
ifeq ($(PORTNAME), win32)
4039
# Link to shfolder.dll instead of shell32.dll
4140
SHLIB_LINK += -lshfolder
41+
DLL_DEFFILE=libecpgdll.def
4242
endif
4343

4444
all: def-files all-lib

‎src/interfaces/ecpg/pgtypeslib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.36 2007/10/0407:58:15 meskes Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.37 2007/10/0418:32:07 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -30,7 +30,7 @@ OBJS= numeric.o datetime.o common.o dt_common.o timestamp.o interval.o \
3030
pgstrcasecmp.o\
3131
$(filter rint.o snprintf.o,$(LIBOBJS))
3232

33-
ifneq ($(PORTNAME), win32)
33+
ifeq ($(PORTNAME), win32)
3434
DLL_DEFFILE=libpgtypesdll.def
3535
endif
3636

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp