Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 52acfd2

Browse files
committed
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.
1 parent 7b3cf9b commit 52acfd2

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/compatlib.def
22
/blibecpg_compatdll.def
33
/exports.list
4+
/snprintf.c
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
/ecpglib.def
22
/blibecpgdll.def
33
/exports.list
4-
54
/path.c
65
/pgstrcasecmp.c
6+
/snprintf.c
77
/strlcpy.c
88
/thread.c
9+
/win32setlocale.c
10+
/isinf.c

src/interfaces/ecpg/ecpglib/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ uninstall: uninstall-lib
7676

7777
clean distclean: clean-lib
7878
rm -f $(OBJS)
79-
rm -f path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c
79+
rm -f path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c win32setlocale.c isinf.c
8080

8181
maintainer-clean: distclean maintainer-clean-lib
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/pgtypeslib.def
22
/blibpgtypesdll.def
33
/exports.list
4-
54
/pgstrcasecmp.c
5+
/rint.c
6+
/snprintf.c

0 commit comments

Comments
 (0)