mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Hello!
Through some minor changes, I have been able to compile the libpq client libraries on the Win32 platform. Since the libpq communications part has been rewritten, this has become much easier. Enclosed is a patch that will allow at least Microsoft Visual C++ to compile libpq into both a static and a dynamic library. I will take a look at porting the psql frontend as well, but I figured it was a good idea to send in these patches first - so no major changes are done to the files before it gets applied (if it does). Regards, Magnus Hagander
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1995, Regents of the University of California
|
||||
*
|
||||
* $Id: postgres.h,v 1.16 1998/04/26 04:08:18 momjian Exp $
|
||||
* $Id: postgres.h,v 1.17 1998/07/03 04:24:10 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -37,7 +37,9 @@
|
||||
#define POSTGRES_H
|
||||
|
||||
#include "postgres_ext.h"
|
||||
#ifndef WIN32
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include "c.h"
|
||||
#include "utils/elog.h"
|
||||
#include "utils/palloc.h"
|
||||
|
Reference in New Issue
Block a user