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

Commit 1c5125a

Browse files
committed
Not entirely sure when this broke, but libpq's VC++ build is currently
lacking pqsignal which is now required. This was found and fixed for VC++ by Shachar Shemesh, I simply duplicated the fix for the Borland makefile (untested, as I don't have that compiler). Dave Page
1 parent 3c57e0b commit 1c5125a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/interfaces/libpq/bcc32.mak

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ LIB32_OBJS= \
8181
"$(INTDIR)\fe-print.obj" \
8282
"$(INTDIR)\fe-secure.obj" \
8383
"$(INTDIR)\pqexpbuffer.obj" \
84+
"$(INTDIR)\pqsignal.obj" \
8485
"$(INTDIR)\wchar.obj" \
8586
"$(INTDIR)\encnames.obj"
8687

@@ -111,6 +112,7 @@ CLEAN :
111112
-@erase "$(INTDIR)\fe-print.obj"
112113
-@erase "$(INTDIR)\fe-secure.obj"
113114
-@erase "$(INTDIR)\pqexpbuffer.obj"
115+
-@erase "$(INTDIR)\pqsignal.obj"
114116
-@erase "$(OUTDIR)\libpqdll.obj"
115117
-@erase "$(OUTDIR)\win32.obj"
116118
-@erase "$(INTDIR)\wchar.obj"

src/interfaces/libpq/win32.mak

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ CLEAN :
6262
-@erase "$(INTDIR)\fe-print.obj"
6363
-@erase "$(INTDIR)\fe-secure.obj"
6464
-@erase "$(INTDIR)\pqexpbuffer.obj"
65+
-@erase "$(INTDIR)\pqsignal.obj"
6566
-@erase "$(OUTDIR)\libpqdll.obj"
6667
-@erase "$(OUTDIR)\win32.obj"
6768
-@erase "$(OUTDIR)\$(OUTFILENAME).lib"
@@ -128,6 +129,7 @@ LIB32_OBJS= \
128129
"$(INTDIR)\fe-print.obj" \
129130
"$(INTDIR)\fe-secure.obj" \
130131
"$(INTDIR)\pqexpbuffer.obj" \
132+
"$(INTDIR)\pqsignal.obj" \
131133
"$(INTDIR)\wchar.obj" \
132134
"$(INTDIR)\encnames.obj" \
133135
"$(INTDIR)\pthread-win32.obj"

0 commit comments

Comments
 (0)