summaryrefslogtreecommitdiff
path: root/src/tools/msvc/Project.pm
AgeCommit message (Collapse)Author
2007-08-21Build snowball DLL for tsearch-in-core.Magnus Hagander
(Still needs to build the .sql output files, but this handles the C part of the build)
2007-07-25Disable warning 4090 = different const qualifiers on msvc since itMagnus Hagander
warns about things that aren't wrong.
2007-06-12ECPG requires a local include directory to override the project-wide ones.Magnus Hagander
Add ability to add "prefix include directories", and use it... With this, ecpg regression tests now pass on MSVC builds.
2007-03-29Make ECPG regression tests use native threading instead of pthreads, now thatMagnus Hagander
ecpglib supports it. Change configure (patch from Bruce) and msvc build system to no longer require pthreads on win32, since all parts of postgresql can be thread-safe using the native platform functions.
2007-03-17Add cvs tags to msvc build files, along with a (very short) comment aboutMagnus Hagander
what each script does.
2007-03-12Make a run with perltidy to format the code. Per request from Andrew Dunstan.Magnus Hagander
2007-01-26Squelch some VC++ compiler warnings. Mark float literals with the "f"Neil Conway
suffix, to distinguish them from doubles. Make some function declarations and definitions use the "const" qualifier for arguments consistently. Ignore warning 4102 ("unreferenced label"), because such warnings are always emitted by bison-generated code. Patch from Magnus Hagander.
2007-01-24When using MSVC, disable the building of ecpg if pthreads is notBruce Momjian
specified. Magnus Hagander
2007-01-16vcbuild updates from Magnus:Neil Conway
* After Markos patch, now builds pgcrypto without zlib again * Updates README with xml info * xml requires xslt and iconv * disable unnecessary warning about __cdecl() * Add a buildenv.bat called from all other bat files to set up things like PATH for flex/bison. (Can't just set it before calling, doesn't always work when building from the GUI)
2007-01-04Fix AddDefine to handle quotes properly. MagnusTom Lane
2006-11-20More MSVC build fixes:Tom Lane
* New versions of OpenSSL come with proper debug versions, and use suffixed names on the LIBs for that. Adapts library handling to deal with that. * Fixes error where it incorrectly enabled Kerberos based on NLS configuration instead of Kerberos configuration * Specifies path of perl in config, instead of using current one. Required when using a 64-bit perl normally, but want to build pl/perl against 32-bit one (required) * Fix so pgevent generates win32ver.rc automatically Magnus Hagander
2006-10-22Various MSVC build fixes from Magnus; also remove stray WindowsTom Lane
newlines.
2006-09-15Several fixes for MSVC build scripts, from Magnus.Tom Lane
2006-09-04Add MSVC build tools.Bruce Momjian
Magnus Hagander