From a060d5bedf67aec472bd3bfc55750ee98628b8e7 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 29 Aug 1998 04:05:46 +0000 Subject: 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 --- src/include/c.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/include/c.h') 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 -- -- cgit v1.2.3