mirror of https://github.com/postgres/postgres
parent
2d87654aeb
commit
c24ed70193
@ -1,34 +0,0 @@ |
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Makefile--
|
||||
# Makefile for port/ultrix
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/backend/port/ultrix4/Attic/Makefile,v 1.3 1997/12/20 00:26:38 scrappy Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SRCDIR = ../../..
|
||||
include ../../../Makefile.global |
||||
|
||||
INCLUDE_OPT = -I../..
|
||||
|
||||
CFLAGS+=$(INCLUDE_OPT)
|
||||
|
||||
OBJS = dynloader.o port.o strdup.o
|
||||
|
||||
all: SUBSYS.o |
||||
|
||||
SUBSYS.o: $(OBJS) |
||||
$(LD) -r -o SUBSYS.o $(OBJS)
|
||||
|
||||
depend dep: |
||||
$(CC) -MM $(INCLUDE_OPT) *.c >depend
|
||||
|
||||
clean: |
||||
rm -f SUBSYS.o $(OBJS)
|
||||
|
||||
ifeq (depend,$(wildcard depend)) |
||||
include depend |
||||
endif |
||||
|
@ -1,43 +0,0 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* port-protos.h-- |
||||
* prototypes for Ultrix-specific routines |
||||
* |
||||
* |
||||
* Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* $Id: port-protos.h,v 1.8 1997/12/19 22:46:47 scrappy Exp $ |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
||||
#ifndef PORT_PORTOS_H |
||||
#define PORT_PORTOS_H |
||||
|
||||
/*
|
||||
* Externals in libc that need prototypes (or at least declarations) |
||||
*/ |
||||
|
||||
extern char *ecvt(double, int, int *, int *); |
||||
extern char *fcvt(double, int, int *, int *); |
||||
|
||||
/* dynloader.c */ |
||||
/*
|
||||
* New dynamic loader. |
||||
* |
||||
* This dynamic loader uses Andrew Yu's libdl-1.0 package for Ultrix 4.x. |
||||
* (Note that pg_dlsym and pg_dlclose are actually macros defined in |
||||
* "port-protos.h".) |
||||
*/ |
||||
|
||||
#define pg_dlsym(h, f) ((func_ptr)dl_sym(h, f)) |
||||
#define pg_dlclose(h) dl_close(h) |
||||
#define pg_dlerror() dl_error() |
||||
extern int dl_init(char *); |
||||
|
||||
/* port.c */ |
||||
|
||||
extern int syscall(); |
||||
|
||||
extern void init_address_fixup(void); |
||||
|
||||
#endif /* PORT_PORTOS_H */ |
Loading…
Reference in new issue