diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-08-29 04:05:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-08-29 04:05:46 +0000 |
commit | a060d5bedf67aec472bd3bfc55750ee98628b8e7 (patch) | |
tree | 046d704db79cf5507a81815fdffdcc5741ffffb8 /src/include/c.h | |
parent | d15c37ca82c28659afb5da3cb50830b4e941a140 (diff) | |
download | postgresql-a060d5bedf67aec472bd3bfc55750ee98628b8e7.tar.gz postgresql-a060d5bedf67aec472bd3bfc55750ee98628b8e7.zip |
Hello!
Here is a new patch for libpq, to make it work on Win32 again (since
the latest modifications broke it a little).
Please also add the file "libpq.rc" to the interfaces/libpq directory.
This will allow version-stamping of the generated DLL file, so that
automatic install programs (and interested users) can determine
the version of the file. The file is currently set as "prerelease".
Before the release, somebody should change the line "FILEFLAGS
VS_FF_PRERELEASE" to "FILEFLAGS 0". That information should probably
go into toos\RELEASE_CHANGES.
The patch is against the cvs as of ~ 1998-08-26 14:30 CEST.
//Magnus
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index 65eb4266aea..3d7c08ddd4f 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.43 1998/08/25 21:04:41 scrappy Exp $ + * $Id: c.h,v 1.44 1998/08/29 04:05:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -133,7 +133,9 @@ typedef char *Pointer; * Example: * extern const Version RomVersion; */ +#ifndef WIN32 #define const /* const */ +#endif /* * signed -- |