diff options
author | Noah Misch <noah@leadboat.com> | 2015-04-24 19:29:09 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2015-04-24 19:29:09 -0400 |
commit | c8aa893862275614d54a0657d1fb336020c98f60 (patch) | |
tree | 4cf3e085073fcd07ab1605555bb76ec3cf192782 /src | |
parent | bcd7e8897cd5345b38232efdbeb3ed12d8790ed5 (diff) | |
download | postgresql-c8aa893862275614d54a0657d1fb336020c98f60.tar.gz postgresql-c8aa893862275614d54a0657d1fb336020c98f60.zip |
Remove obsolete -I options from ECPG library compilation.
The MSVC build system already omitted these.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 2 | ||||
-rw-r--r-- | src/interfaces/ecpg/pgtypeslib/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index e0b0474ada1..ed52bff01ed 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -19,7 +19,7 @@ SO_MAJOR_VERSION= 3 SO_MINOR_VERSION= 7 override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \ - -I$(libpq_srcdir) -I$(top_srcdir)/src/include/utils -DFRONTEND $(CPPFLAGS) + -I$(libpq_srcdir) -DFRONTEND $(CPPFLAGS) override CFLAGS += $(PTHREAD_CFLAGS) SHLIB_LINK = -L../ecpglib -lecpg -L../pgtypeslib -lpgtypes $(libpq) \ diff --git a/src/interfaces/ecpg/pgtypeslib/Makefile b/src/interfaces/ecpg/pgtypeslib/Makefile index 52c83be3c0f..6c7ae63d4e2 100644 --- a/src/interfaces/ecpg/pgtypeslib/Makefile +++ b/src/interfaces/ecpg/pgtypeslib/Makefile @@ -19,7 +19,7 @@ SO_MAJOR_VERSION= 3 SO_MINOR_VERSION= 6 override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \ - -I$(top_srcdir)/src/include/utils -I$(libpq_srcdir) -DFRONTEND $(CPPFLAGS) + -DFRONTEND $(CPPFLAGS) override CFLAGS += $(PTHREAD_CFLAGS) # Need to recompile any libpgport object files |