Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b57cbb4

Browse files
committed
Add missing sprompt.obj psql usage for Borland compiler, per private
report from krizsan. Backpatch to 7.4.X.
1 parent fd104c5 commit b57cbb4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/bin/psql/bcc32.mak

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ CLEAN :
7070
-@erase "$(INTDIR)\print.obj"
7171
-@erase "$(INTDIR)\describe.obj"
7272
-@erase "$(INTDIR)\tab-complete.obj"
73+
-@erase "$(INTDIR)\sprompt.obj"
7374
-@erase "$(INTDIR)\getopt.obj"
7475
-@erase "$(INTDIR)\getopt_long.obj"
7576
-@erase "$(INTDIR)\path.obj"
@@ -123,9 +124,10 @@ LINK32_OBJS= \
123124
print.obj \
124125
describe.obj \
125126
tab-complete.obj \
127+
sprompt.obj \
126128
getopt.obj \
127-
getopt_long.obj \
128-
path.obj \
129+
getopt_long.obj \
130+
path.obj \
129131
mbprint.obj
130132

131133

@@ -137,6 +139,7 @@ LINK32_OBJS= \
137139
import32.lib $(LIBRARIES),,
138140
!
139141

142+
sprompt.obj : "$(OUTDIR)" ..\..\port\sprompt.c
140143
getopt.obj : "$(OUTDIR)" ..\..\port\getopt.c
141144
getopt_long.obj : "$(OUTDIR)" ..\..\port\getopt_long.c
142145
path.obj : "$(OUTDIR)" ..\..\port\path.c

0 commit comments

Comments
 (0)