diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-10-03 15:24:19 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-10-03 15:24:19 +0000 |
commit | 2b0e46eef008c53b87da62d1f5bce7718748346d (patch) | |
tree | 88f88cfeea8967f77553a0817f7edbd873554c41 | |
parent | fdbce93b859be494bc4b418d3b165e5909445b3d (diff) | |
download | postgresql-2b0e46eef008c53b87da62d1f5bce7718748346d.tar.gz postgresql-2b0e46eef008c53b87da62d1f5bce7718748346d.zip |
Argh, missing dll in filename
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 6 | ||||
-rw-r--r-- | src/interfaces/ecpg/pgtypeslib/Makefile | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index 8e5a5f8ce20..8b41249b7fd 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.32 2007/10/03 15:04:23 tgl Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.33 2007/10/03 15:24:19 meskes Exp $ # #------------------------------------------------------------------------- @@ -47,8 +47,8 @@ snprintf.c: % : $(top_srcdir)/src/port/% # always built and included in distribution tarballs. .PHONY: def-files -def-files: $(srcdir)/libecpg_compat.def $(srcdir)/blibecpg_compatdll.def -$(srcdir)/libecpg_compat.def: exports.txt +def-files: $(srcdir)/libecpg_compatdll.def $(srcdir)/blibecpg_compatdll.def +$(srcdir)/libecpg_compatdll.def: exports.txt echo '; DEF file for MS VC++' > $@ echo 'LIBRARY LIBECPG_COMPAT' >> $@ echo 'EXPORTS' >> $@ diff --git a/src/interfaces/ecpg/pgtypeslib/Makefile b/src/interfaces/ecpg/pgtypeslib/Makefile index f375c19ebae..eb3ad0df198 100644 --- a/src/interfaces/ecpg/pgtypeslib/Makefile +++ b/src/interfaces/ecpg/pgtypeslib/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.34 2007/10/03 13:20:19 meskes Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.35 2007/10/03 15:24:19 meskes Exp $ # #------------------------------------------------------------------------- @@ -45,8 +45,9 @@ include $(top_srcdir)/src/Makefile.shlib # always built and included in distribution tarballs. .PHONY: def-files -def-files: $(srcdir)/libpgtypes.def $(srcdir)/blibpgtypesdll.def -$(srcdir)/libpgtypes.def: exports.txt +def-files: $(srcdir)/libpgtypesdll.def $(srcdir)/blibpgtypesdll.def + +$(srcdir)/libpgtypesdll.def: exports.txt echo '; DEF file for MS VC++' > $@ echo 'LIBRARY LIBPGTYPES' >> $@ echo 'EXPORTS' >> $@ |