mirror of https://github.com/postgres/postgres
submitted by: Bruce Momjian (root@candle.pha.pa.us)Release_1_0_3
parent
bf2abf0dae
commit
55aab6a434
@ -0,0 +1,14 @@ |
||||
#------------------------------------------------------------------------- |
||||
# |
||||
# Makefile.inc-- |
||||
# Makefile for port/bsdi_2_1 |
||||
# |
||||
# NOTES |
||||
# The BSD/OS port is included here by courtesy of Kurt Lidl. |
||||
# |
||||
# (5) 1994, Kurt Lidl, lidl@pix.com |
||||
# |
||||
#------------------------------------------------------------------------- |
||||
|
||||
CFLAGS+=-DUSE_POSIX_TIME -DNEED_CBRT |
||||
LDADD+= -ldl -lipc |
@ -0,0 +1,18 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* machine.h-- |
||||
*
|
||||
* |
||||
* |
||||
* Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* machine.h,v 1.1.1.1 1994/11/07 05:19:37 andrew Exp |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
||||
#ifndef MACHINE_H |
||||
#define MACHINE_H |
||||
|
||||
#define BLCKSZ 8192 |
||||
|
||||
#endif |
@ -0,0 +1,28 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* port-protos.h-- |
||||
* port-specific prototypes for SunOS 4 |
||||
* |
||||
* |
||||
* Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* port-protos.h,v 1.2 1995/05/25 22:51:03 andrew Exp |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
||||
#ifndef PORT_PROTOS_H |
||||
#define PORT_PROTOS_H |
||||
|
||||
#include "fmgr.h" /* for func_ptr */ |
||||
#include "utils/dynamic_loader.h" |
||||
|
||||
/* dynloader.c */ |
||||
|
||||
#define pg_dlopen(f) dlopen(f, 1) |
||||
#define pg_dlsym dlsym |
||||
#define pg_dlclose dlclose |
||||
#define pg_dlerror dlerror |
||||
|
||||
/* port.c */ |
||||
|
||||
#endif /* PORT_PROTOS_H */ |
@ -0,0 +1,13 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* port.c-- |
||||
* Linux-specific routines |
||||
* |
||||
* Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* |
||||
* IDENTIFICATION |
||||
* /usr/local/devel/pglite/cvs/src/backend/port/linux/port.c,v 1.1.1.1 1994/11/07 05:19:38 andrew Exp |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
@ -0,0 +1,40 @@ |
||||
#------------------------------------------------------------------------- |
||||
# |
||||
# postgres.mk.bsdi-- |
||||
# Intel x86/BSDi v2.0 specific rules and variables |
||||
# |
||||
# for questions about the BSD/OS port, contact Kurt Lidl (lidl@pix.com) |
||||
# |
||||
# Copyright (c) 1994-5, Regents of the University of California |
||||
# |
||||
# NOTE |
||||
# you may remove lines that start with ## which are general comments |
||||
#------------------------------------------------------------------------- |
||||
ifndef MK_PORT |
||||
MK_PORT= bsdi_2_1 |
||||
|
||||
# cc is gcc v1.42 |
||||
# gcc is gcc v2.6.3 |
||||
CC= gcc |
||||
|
||||
RANLIB= ranlib |
||||
INSTALL= install |
||||
LEX= lex |
||||
AROPT= cq |
||||
|
||||
# use the regex library |
||||
USE_REGEX = 1 |
||||
|
||||
LDADD_BE= -ldl -lcompat |
||||
|
||||
# |
||||
# for postgres.user.mk |
||||
# |
||||
SLSUFF= .o |
||||
|
||||
# |
||||
# for postgres.mk |
||||
# |
||||
CFLAGS_OPT= -O -DUSE_POSIX_SIGNALS # -O2 |
||||
|
||||
endif |
Loading…
Reference in new issue