head	1.1;
access;
symbols
	REL7_3_STABLE:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	2002.08.10.23.29.10;	author jtv;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Added Clinton James' patches for Visual C++ 7, with some changes to keep
things working on gcc.  I'll take some of this stuff out again as, if &
when Microsoft improves its compiler.
@
text
@!IF "$(OS)" == "Windows_NT"
NULL=
!ELSE 
NULL=nul
!ENDIF 

#-STL options
# STD=/D "PGSTD=std"
# If you are using a 3rd party STL like STLport, remember to check your path
# and be sure the STLport is included before the MSVC includes. VCVARS32.BAT
# doesn't know anything about the directories as defined in the IDE. I use
# set INCLUDE=\Utility\Code\STLport-4.5\stlport;%INCLUDE%
# STD=/D "PGSTD=_STL" 

# Depending on your STL library min/max need to be defined.  Using STLport
# there is no need for libpqxx to redefine these for me.

# The next line gives us the src directory to add additional include directories
# We need certain header files from the Postgres code.  Specifically 
#     src/include/c.h
#     src/include/config.h
#     src/include/postgres_ext.h
#     src/include/postgres_fe.h
#     src/interfaces/libpq/libpq-fe.h
PGSQLSRC=/Project/postgresql-7.1.2/src
# If the LIBPQ libaray is not in the LIB environment or search path specified it here
LIBPATH=/libpath:"/Project/postgresql-7.1.2/src/interfaces/libpq/Release"

@
