mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix some missing .gitignore and "make clean" items in ecpg.
Some of the files we optionally link in from elsewhere weren't ignored and/or weren't cleaned up at "make clean". Noted while testing on a machine that needs our version of snprintf.c.
This commit is contained in:
parent
7b3cf9ba9d
commit
52acfd27f1
1
src/interfaces/ecpg/compatlib/.gitignore
vendored
1
src/interfaces/ecpg/compatlib/.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
/compatlib.def
|
/compatlib.def
|
||||||
/blibecpg_compatdll.def
|
/blibecpg_compatdll.def
|
||||||
/exports.list
|
/exports.list
|
||||||
|
/snprintf.c
|
||||||
|
4
src/interfaces/ecpg/ecpglib/.gitignore
vendored
4
src/interfaces/ecpg/ecpglib/.gitignore
vendored
@ -1,8 +1,10 @@
|
|||||||
/ecpglib.def
|
/ecpglib.def
|
||||||
/blibecpgdll.def
|
/blibecpgdll.def
|
||||||
/exports.list
|
/exports.list
|
||||||
|
|
||||||
/path.c
|
/path.c
|
||||||
/pgstrcasecmp.c
|
/pgstrcasecmp.c
|
||||||
|
/snprintf.c
|
||||||
/strlcpy.c
|
/strlcpy.c
|
||||||
/thread.c
|
/thread.c
|
||||||
|
/win32setlocale.c
|
||||||
|
/isinf.c
|
||||||
|
@ -76,6 +76,6 @@ uninstall: uninstall-lib
|
|||||||
|
|
||||||
clean distclean: clean-lib
|
clean distclean: clean-lib
|
||||||
rm -f $(OBJS)
|
rm -f $(OBJS)
|
||||||
rm -f path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c
|
rm -f path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c isinf.c
|
||||||
|
|
||||||
maintainer-clean: distclean maintainer-clean-lib
|
maintainer-clean: distclean maintainer-clean-lib
|
||||||
|
3
src/interfaces/ecpg/pgtypeslib/.gitignore
vendored
3
src/interfaces/ecpg/pgtypeslib/.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
/pgtypeslib.def
|
/pgtypeslib.def
|
||||||
/blibpgtypesdll.def
|
/blibpgtypesdll.def
|
||||||
/exports.list
|
/exports.list
|
||||||
|
|
||||||
/pgstrcasecmp.c
|
/pgstrcasecmp.c
|
||||||
|
/rint.c
|
||||||
|
/snprintf.c
|
||||||
|
Loading…
Reference in New Issue
Block a user