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

Commit 3f0245c

Browse files
committed
Update supported standalone VC++ version to 7.1+ only, and fix
some bad data leftover in win32.mak. Per request from Hiroshi Saito.
1 parent 6387260 commit 3f0245c

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

doc/src/sgml/install-win32.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.40 2007/04/18 13:50:08 mha Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.41 2007/08/03 10:47:10 mha Exp $ -->
22

33
<chapter id="install-win32">
44
<title>Installation on <productname>Windows</productname></title>
@@ -24,7 +24,7 @@
2424
built for older versions of <productname>Windows</productname> using
2525
<productname>Cygwin</productname>. Finally, the client access library
2626
(<application>libpq</application>) can be built using
27-
<productname>Visual C++ 6.0</productname> or
27+
<productname>Visual C++ 7.1</productname> or
2828
<productname>Borland C++</productname> for compatibility with statically
2929
linked applications built using these tools.
3030
</para>
@@ -360,7 +360,7 @@
360360
<productname>Borland C++</productname></title>
361361

362362
<para>
363-
Using <productname>Visual C++ 6.0-8.0</productname> or
363+
Using <productname>Visual C++ 7.1-8.0</productname> or
364364
<productname>Borland C++</productname> to build libpq is only recommended
365365
if you need a version with different debug/release flags, or if you need a
366366
static library to link into an application. For normal use the
@@ -370,7 +370,7 @@
370370

371371
<para>
372372
To build the <application>libpq</application> client library using
373-
<productname>Visual Studio 6.0 or later</productname>, change into the
373+
<productname>Visual Studio 7.1 or later</productname>, change into the
374374
<filename>src</filename> directory and type the command
375375
<screen>
376376
<userinput>nmake /f win32.mak</userinput>

src/interfaces/libpq/win32.mak

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
<<<<<<< win32.mak
2-
# Makefile for Microsoft Visual C++ 8.0
3-
=======
4-
# Makefile for Microsoft Visual C++ 6.0-8.0
5-
>>>>>>> 1.45
1+
# Makefile for Microsoft Visual C++ 7.1-8.0
62

73
# Will build a static library libpq(d).lib
84
# and a dynamic library libpq(d).dll with import library libpq(d)dll.lib

src/win32.mak

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $PostgreSQL: pgsql/src/win32.mak,v 1.15 2007/03/05 14:18:38 mha Exp $
1+
# $PostgreSQL: pgsql/src/win32.mak,v 1.16 2007/08/03 10:47:10 mha Exp $
22

3-
# Top-file makefile for building Win32 libpq with Visual C++ 6.0.
3+
# Top-file makefile for building Win32 libpq with Visual C++ 7.1.
44
# (see src/tools/msvc for tools to build with Visual C++ 2005 and newer)
55

66
!IF "$(OS)" == "Windows_NT"

0 commit comments

Comments
 (0)