打包增加ecpg
This commit is contained in:
@ -5,6 +5,7 @@
|
|||||||
./bin/dms_contrl.sh
|
./bin/dms_contrl.sh
|
||||||
./bin/dss_clear.sh
|
./bin/dss_clear.sh
|
||||||
./bin/dss_contrl.sh
|
./bin/dss_contrl.sh
|
||||||
|
./bin/ecpg
|
||||||
./bin/gsql
|
./bin/gsql
|
||||||
./bin/gaussdb
|
./bin/gaussdb
|
||||||
./bin/gstrace
|
./bin/gstrace
|
||||||
@ -808,6 +809,10 @@
|
|||||||
./lib/libpq_ce.so
|
./lib/libpq_ce.so
|
||||||
./lib/libpq_ce.so.5
|
./lib/libpq_ce.so.5
|
||||||
./lib/libpq_ce.so.5.5
|
./lib/libpq_ce.so.5.5
|
||||||
|
./lib/libecpg.so.6.4
|
||||||
|
./lib/libecpg_compat.so.3.4
|
||||||
|
./lib/libecpg.a
|
||||||
|
./lib/libecpg_compat.a
|
||||||
./lib/libgauss_cl_jni.so
|
./lib/libgauss_cl_jni.so
|
||||||
./lib/libnuma.so
|
./lib/libnuma.so
|
||||||
./lib/libnuma.so.1
|
./lib/libnuma.so.1
|
||||||
@ -1030,6 +1035,11 @@
|
|||||||
./include/postgresql/server/gstrace/gstrace_infra.h
|
./include/postgresql/server/gstrace/gstrace_infra.h
|
||||||
./include/postgresql/server/extension_dependency.h
|
./include/postgresql/server/extension_dependency.h
|
||||||
./include/postgresql/server/libpq/libpq-fe.h
|
./include/postgresql/server/libpq/libpq-fe.h
|
||||||
|
./include/postgresql/server/ecpg/ecpgerrno.h
|
||||||
|
./include/postgresql/server/ecpg/ecpglib.h
|
||||||
|
./include/postgresql/server/ecpg/ecpgtype.h
|
||||||
|
./include/postgresql/server/ecpg/ecpg_informix.h
|
||||||
|
./include/postgresql/server/ecpg/ecpg_config.h
|
||||||
./include/postgresql/server/access/clog.h
|
./include/postgresql/server/access/clog.h
|
||||||
./include/postgresql/server/storage/proc.h
|
./include/postgresql/server/storage/proc.h
|
||||||
./include/postgresql/server/access/xlog.h
|
./include/postgresql/server/access/xlog.h
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
./bin/dms_contrl.sh
|
./bin/dms_contrl.sh
|
||||||
./bin/dss_clear.sh
|
./bin/dss_clear.sh
|
||||||
./bin/dss_contrl.sh
|
./bin/dss_contrl.sh
|
||||||
|
./bin/ecpg
|
||||||
./bin/gsql
|
./bin/gsql
|
||||||
./bin/gaussdb
|
./bin/gaussdb
|
||||||
./bin/gstrace
|
./bin/gstrace
|
||||||
@ -808,6 +809,10 @@
|
|||||||
./lib/libpq_ce.so
|
./lib/libpq_ce.so
|
||||||
./lib/libpq_ce.so.5
|
./lib/libpq_ce.so.5
|
||||||
./lib/libpq_ce.so.5.5
|
./lib/libpq_ce.so.5.5
|
||||||
|
./lib/libecpg.so.6.4
|
||||||
|
./lib/libecpg_compat.so.3.4
|
||||||
|
./lib/libecpg.a
|
||||||
|
./lib/libecpg_compat.a
|
||||||
./lib/libgauss_cl_jni.so
|
./lib/libgauss_cl_jni.so
|
||||||
./lib/libcgroup.so*
|
./lib/libcgroup.so*
|
||||||
./lib/libcom_err_gauss.so*
|
./lib/libcom_err_gauss.so*
|
||||||
@ -1027,6 +1032,11 @@
|
|||||||
./include/postgresql/server/gstrace/gstrace_infra.h
|
./include/postgresql/server/gstrace/gstrace_infra.h
|
||||||
./include/postgresql/server/extension_dependency.h
|
./include/postgresql/server/extension_dependency.h
|
||||||
./include/postgresql/server/libpq/libpq-fe.h
|
./include/postgresql/server/libpq/libpq-fe.h
|
||||||
|
./include/postgresql/server/ecpg/ecpgerrno.h
|
||||||
|
./include/postgresql/server/ecpg/ecpglib.h
|
||||||
|
./include/postgresql/server/ecpg/ecpgtype.h
|
||||||
|
./include/postgresql/server/ecpg/ecpg_informix.h
|
||||||
|
./include/postgresql/server/ecpg/ecpg_config.h
|
||||||
./include/postgresql/server/access/clog.h
|
./include/postgresql/server/access/clog.h
|
||||||
./include/postgresql/server/storage/proc.h
|
./include/postgresql/server/storage/proc.h
|
||||||
./include/postgresql/server/access/xlog.h
|
./include/postgresql/server/access/xlog.h
|
||||||
|
@ -23,9 +23,15 @@ install-headers: $(ecpg_headers) $(informix_headers)
|
|||||||
$(INSTALL_DATA) $(addprefix $(srcdir)/,$(informix_headers)) '$(DESTDIR)$(informix_esql_dir)/'
|
$(INSTALL_DATA) $(addprefix $(srcdir)/,$(informix_headers)) '$(DESTDIR)$(informix_esql_dir)/'
|
||||||
$(INSTALL_DATA) $(ecpg_config_h) '$(DESTDIR)$(includedir)'
|
$(INSTALL_DATA) $(ecpg_config_h) '$(DESTDIR)$(includedir)'
|
||||||
|
|
||||||
|
$(MKDIR_P) '$(DESTDIR)$(includedir_server)/ecpg'
|
||||||
|
for header_file in $(wildcard $(srcdir)/*.h); do \
|
||||||
|
$(INSTALL_DATA) $$header_file '$(DESTDIR)$(includedir_server)/ecpg' || exit; \
|
||||||
|
done
|
||||||
|
|
||||||
installdirs:
|
installdirs:
|
||||||
$(MKDIR_P) '$(DESTDIR)$(includedir)' '$(DESTDIR)$(informix_esql_dir)'
|
$(MKDIR_P) '$(DESTDIR)$(includedir)' '$(DESTDIR)$(informix_esql_dir)'
|
||||||
|
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(addprefix '$(DESTDIR)$(includedir)'/, $(ecpg_headers))
|
rm -f $(addprefix '$(DESTDIR)$(includedir)'/, $(ecpg_headers))
|
||||||
rm -f $(addprefix '$(DESTDIR)$(informix_esql_dir)'/, $(informix_headers))
|
rm -f $(addprefix '$(DESTDIR)$(informix_esql_dir)'/, $(informix_headers))
|
||||||
@ -33,3 +39,4 @@ uninstall:
|
|||||||
|
|
||||||
distclean maintainer-clean:
|
distclean maintainer-clean:
|
||||||
rm -f ecpg_config.h stamp-h
|
rm -f ecpg_config.h stamp-h
|
||||||
|
rm -r '$(DESTDIR)$(includedir_server)/ecpg'
|
||||||
|
Reference in New Issue
Block a user