diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-10-10 21:31:44 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-10-10 21:31:44 +0000 |
| commit | ed95aea27d1d245700a178d6527c1f7782d03bc2 (patch) | |
| tree | d089400d9ddb9ef5a5e1bc12f16bebb018109e41 /src/bin/psql | |
| parent | 04209052ba65366ceaa678fafc384b064a61c0ea (diff) | |
| download | postgresql-ed95aea27d1d245700a178d6527c1f7782d03bc2.tar.gz | |
MSVC/BCC Win32 compiler fixes.
Hiroshi Saito
Diffstat (limited to 'src/bin/psql')
| -rw-r--r-- | src/bin/psql/win32.mak | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bin/psql/win32.mak b/src/bin/psql/win32.mak index 3e500f7290..2d88c51acb 100644 --- a/src/bin/psql/win32.mak +++ b/src/bin/psql/win32.mak @@ -59,6 +59,7 @@ CLEAN : -@erase "$(INTDIR)\getopt_long.obj" -@erase "$(INTDIR)\snprintf.obj" -@erase "$(INTDIR)\path.obj" + -@erase "$(INTDIR)\strlcpy.obj" -@erase "$(INTDIR)\pgstrcasecmp.obj" -@erase "$(INTDIR)\sprompt.obj" -@erase "$(INTDIR)\dumputils.obj" @@ -94,6 +95,7 @@ LINK32_OBJS= \ "$(INTDIR)\getopt_long.obj" \ "$(INTDIR)\snprintf.obj" \ "$(INTDIR)\path.obj" \ + "$(INTDIR)\strlcpy.obj" \ "$(INTDIR)\pgstrcasecmp.obj" \ "$(INTDIR)\sprompt.obj" \ "$(INTDIR)\dumputils.obj" \ @@ -151,6 +153,11 @@ LINK32_OBJS = $(LINK32_OBJS) "..\..\interfaces\libpq\Release\libpqdll.lib" $(CPP_PROJ) ..\..\port\path.c << +"$(INTDIR)\strlcpy.obj" : "$(INTDIR)" ..\..\port\strlcpy.c + $(CPP) @<< + $(CPP_PROJ) ..\..\port\strlcpy.c +<< + "$(INTDIR)\pgstrcasecmp.obj" : ..\..\port\pgstrcasecmp.c $(CPP) @<< $(CPP_PROJ) ..\..\port\pgstrcasecmp.c |
