1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

First clean compile without a "PORTNAME" variable being set...

This commit is contained in:
Marc G. Fournier
1997-12-20 00:11:13 +00:00
parent 93e74460a9
commit 10ff1eea60
10 changed files with 234 additions and 251 deletions

View File

@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.18 1997/12/19 02:08:01 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.19 1997/12/20 00:10:29 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -28,10 +28,6 @@
#include <string.h>
#endif
#ifndef HAVE_FCVT
# include <port-protos.h> /* ecvt(), fcvt() */
#endif
#ifndef INT_MAX
#define INT_MAX (0x7FFFFFFFL)
#endif

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.13 1997/09/18 20:22:27 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.14 1997/12/20 00:10:42 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -26,7 +26,8 @@
#include "access/heapam.h"
#include "nodes/pg_list.h"
#include "port-protos.h" /* system specific function prototypes */
#include "dynloader.h"
#ifdef __ultrix
#include <dl.h>
#endif

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.20 1997/11/24 05:09:17 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.21 1997/12/20 00:10:47 scrappy Exp $
*
* NOTES
* InitPostgres() is the function called from PostgresMain
@@ -66,7 +66,6 @@
#include "catalog/catname.h"
#include "catalog/pg_database.h"
#include "port-protos.h"
#include "libpq/libpq-be.h"
static void VerifySystemDatabase(void);