diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-10-04 18:32:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-10-04 18:32:07 +0000 |
commit | c86ce06964af9ba1cf689edd455bdadb9a474b0b (patch) | |
tree | 0fbfef945f4e199edd08e763d8ed2b9b5517af95 /src/interfaces/ecpg/compatlib | |
parent | 746593efe620ecbc12605fc36ae34f95b554849b (diff) | |
download | postgresql-c86ce06964af9ba1cf689edd455bdadb9a474b0b.tar.gz postgresql-c86ce06964af9ba1cf689edd455bdadb9a474b0b.zip |
DLL_DEFFILE should be defined when PORTNAME is win32, not when it isn't,
per the example of libpq/Makefile.
Diffstat (limited to 'src/interfaces/ecpg/compatlib')
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index 8223152e847..47b2eabc22f 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.34 2007/10/04 07:58:15 meskes Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.35 2007/10/04 18:32:07 tgl Exp $ # #------------------------------------------------------------------------- @@ -29,7 +29,7 @@ LIBS := $(filter-out -lpgport, $(LIBS)) OBJS= informix.o $(filter snprintf.o, $(LIBOBJS)) -ifneq ($(PORTNAME), win32) +ifeq ($(PORTNAME), win32) DLL_DEFFILE=libecpg_compatdll.def endif |