diff options
author | Michael Meskes | 2010-01-05 16:38:23 +0000 |
---|---|---|
committer | Michael Meskes | 2010-01-05 16:38:23 +0000 |
commit | 6d4a351fcbb780b89c638f48b81ab34d92c00ba8 (patch) | |
tree | a69e6cbb44eab6f6435dffde29637338d4d6be1b /src/interfaces/ecpg/include/Makefile | |
parent | af322a8a3ef28d9b0425238353a8bffa94bfaa47 (diff) |
Applied patch by Boszormenyi Zoltan <[email protected]> to add sqlda support to
ecpg in both native and compatiblity mode.
Diffstat (limited to 'src/interfaces/ecpg/include/Makefile')
-rw-r--r-- | src/interfaces/ecpg/include/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/include/Makefile b/src/interfaces/ecpg/include/Makefile index 0acd4f0a3cf..eab833b9aca 100644 --- a/src/interfaces/ecpg/include/Makefile +++ b/src/interfaces/ecpg/include/Makefile @@ -14,8 +14,9 @@ install: all installdirs install-headers .PHONY: install-headers ecpg_headers = ecpgerrno.h ecpglib.h ecpgtype.h sqlca.h sql3types.h ecpg_informix.h \ - pgtypes_error.h pgtypes_numeric.h pgtypes_timestamp.h pgtypes_date.h pgtypes_interval.h -informix_headers = datetime.h decimal.h sqltypes.h sqlda.h + pgtypes_error.h pgtypes_numeric.h pgtypes_timestamp.h pgtypes_date.h pgtypes_interval.h \ + sqlda.h sqlda-compat.h sqlda-native.h +informix_headers = datetime.h decimal.h sqltypes.h install-headers: $(ecpg_headers) $(informix_headers) $(INSTALL_DATA) $(addprefix $(srcdir)/,$(ecpg_headers)) '$(DESTDIR)$(includedir)/' |