mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Reorganize Win32 includes to only include <port.h> after system includes
under Win32. Also fix other compile issues.
This commit is contained in:
3
configure
vendored
3
configure
vendored
@ -11397,7 +11397,8 @@ esac
|
|||||||
# Win32 can't to rename or unlink on an open file
|
# Win32 can't to rename or unlink on an open file
|
||||||
case $host_os in mingw*)
|
case $host_os in mingw*)
|
||||||
LIBOBJS="$LIBOBJS dirmod.$ac_objext"
|
LIBOBJS="$LIBOBJS dirmod.$ac_objext"
|
||||||
LIBOBJS="$LIBOBJS copydir.$ac_objext" ;;
|
LIBOBJS="$LIBOBJS copydir.$ac_objext"
|
||||||
|
LIBOBJS="$LIBOBJS gettimeofday.$ac_objext" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if test "$with_readline" = yes; then
|
if test "$with_readline" = yes; then
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.251 2003/05/15 17:59:17 momjian Exp $
|
dnl $Header: /cvsroot/pgsql/configure.in,v 1.252 2003/05/16 01:57:51 momjian Exp $
|
||||||
dnl
|
dnl
|
||||||
dnl Developers, please strive to achieve this order:
|
dnl Developers, please strive to achieve this order:
|
||||||
dnl
|
dnl
|
||||||
@ -865,7 +865,8 @@ esac
|
|||||||
# Win32 can't to rename or unlink on an open file
|
# Win32 can't to rename or unlink on an open file
|
||||||
case $host_os in mingw*)
|
case $host_os in mingw*)
|
||||||
AC_LIBOBJ(dirmod)
|
AC_LIBOBJ(dirmod)
|
||||||
AC_LIBOBJ(copydir) ;;
|
AC_LIBOBJ(copydir)
|
||||||
|
AC_LIBOBJ(gettimeofday) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if test "$with_readline" = yes; then
|
if test "$with_readline" = yes; then
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: c.h,v 1.146 2003/05/15 23:39:27 tgl Exp $
|
* $Id: c.h,v 1.147 2003/05/16 01:57:51 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -52,7 +52,9 @@
|
|||||||
|
|
||||||
#include "pg_config.h"
|
#include "pg_config.h"
|
||||||
#include "pg_config_manual.h" /* must be after pg_config.h */
|
#include "pg_config_manual.h" /* must be after pg_config.h */
|
||||||
|
#ifndef WIN32
|
||||||
#include "pg_config_os.h" /* must be before any system header files */
|
#include "pg_config_os.h" /* must be before any system header files */
|
||||||
|
#endif
|
||||||
#include "postgres_ext.h"
|
#include "postgres_ext.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -71,6 +73,11 @@
|
|||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
/* We have to redefine some system functions after they are included above */
|
||||||
|
#include "pg_config_os.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Must be before gettext() games below */
|
/* Must be before gettext() games below */
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: port.h,v 1.1 2003/05/15 16:35:29 momjian Exp $
|
* $Id: port.h,v 1.2 2003/05/16 01:57:51 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -22,21 +22,26 @@ int fseeko(FILE *stream, off_t offset, int whence);
|
|||||||
off_t ftello(FILE *stream);
|
off_t ftello(FILE *stream);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
/*
|
/*
|
||||||
* Win32 doesn't have reliable rename/unlink during concurrent access
|
* Win32 doesn't have reliable rename/unlink during concurrent access
|
||||||
*/
|
*/
|
||||||
#if defined(WIN32) && !defined(FRONTEND)
|
#ifndef FRONTEND
|
||||||
int pgrename(const char *from, const char *to);
|
int pgrename(const char *from, const char *to);
|
||||||
int pgunlink(const char *path);
|
int pgunlink(const char *path);
|
||||||
#define rename(from, to) pgrename(from, to)
|
#define rename(from, to) pgrename(from, to)
|
||||||
#define unlink(path) pgunlink(path)
|
#define unlink(path) pgunlink(path)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern int copydir(char *fromdir,char *todir);
|
||||||
|
extern int gettimeofday(struct timeval *tp, struct timezone *tzp);
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Win32 requires a special close for sockets and pipes, while on Unix
|
* Win32 requires a special close for sockets and pipes, while on Unix
|
||||||
* close() does them all.
|
* close() does them all.
|
||||||
*/
|
*/
|
||||||
#ifndef WIN32
|
|
||||||
#define closesocket close
|
#define closesocket close
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -45,7 +50,7 @@ int pgunlink(const char *path);
|
|||||||
* When necessary, these routines are provided by files in src/port/.
|
* When necessary, these routines are provided by files in src/port/.
|
||||||
*/
|
*/
|
||||||
#ifndef HAVE_CRYPT
|
#ifndef HAVE_CRYPT
|
||||||
char *crypt(const char *key, const char *setting);
|
extern char *crypt(const char *key, const char *setting);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_FSEEKO
|
#ifndef HAVE_FSEEKO
|
||||||
@ -90,4 +95,3 @@ extern long random(void);
|
|||||||
#ifndef HAVE_SRANDOM
|
#ifndef HAVE_SRANDOM
|
||||||
extern void srandom(unsigned int seed);
|
extern void srandom(unsigned int seed);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
|
#undef mkdir /* no reason to use that macro because we ignore the 2nd arg */
|
||||||
|
|
||||||
|
#include "dirent.h"
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
copydir(char *fromdir,char *todir)
|
copydir(char *fromdir,char *todir)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user