mirror of https://github.com/postgres/postgres
Development of IRIX has been discontinued, and support is scheduled to end in December of 2013. Therefore, there will be no supported versions of this operating system by the time PostgreSQL 9.4 is released. Furthermore, we have no maintainer for this platform.pull/6/head
parent
f39418e9b3
commit
ea91a6be89
@ -1,6 +0,0 @@ |
||||
/* src/backend/port/dynloader/irix.c */ |
||||
|
||||
/* Dummy file used for nothing at this point
|
||||
* |
||||
* see irix.h |
||||
*/ |
@ -1,46 +0,0 @@ |
||||
/*-------------------------------------------------------------------------
|
||||
* |
||||
* irix.h |
||||
* port-specific prototypes for Irix |
||||
* |
||||
* |
||||
* Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group |
||||
* Portions Copyright (c) 1994, Regents of the University of California |
||||
* |
||||
* src/backend/port/dynloader/irix.h |
||||
* |
||||
*------------------------------------------------------------------------- |
||||
*/ |
||||
#ifndef PORT_PROTOS_H |
||||
#define PORT_PROTOS_H |
||||
|
||||
#include <dlfcn.h> |
||||
#include "utils/dynamic_loader.h" /* pgrminclude ignore */ |
||||
|
||||
/*
|
||||
* Dynamic Loader on Irix. |
||||
* |
||||
* this dynamic loader uses the system dynamic loading interface for shared |
||||
* libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared |
||||
* library as the file to be dynamically loaded. |
||||
*/ |
||||
|
||||
/*
|
||||
* In some older systems, the RTLD_NOW flag isn't defined and the mode |
||||
* argument to dlopen must always be 1. The RTLD_GLOBAL flag is wanted |
||||
* if available, but it doesn't exist everywhere. |
||||
* If it doesn't exist, set it to 0 so it has no effect. |
||||
*/ |
||||
#ifndef RTLD_NOW |
||||
#define RTLD_NOW 1 |
||||
#endif |
||||
#ifndef RTLD_GLOBAL |
||||
#define RTLD_GLOBAL 0 |
||||
#endif |
||||
|
||||
#define pg_dlopen(f) dlopen((f), RTLD_NOW | RTLD_GLOBAL) |
||||
#define pg_dlsym dlsym |
||||
#define pg_dlclose dlclose |
||||
#define pg_dlerror dlerror |
||||
|
||||
#endif /* PORT_PROTOS_H */ |
@ -1,7 +0,0 @@ |
||||
/* src/include/port/irix.h */ |
||||
|
||||
/*
|
||||
* IRIX 6.5.26f and 6.5.22f (at least) have a strtod() that accepts |
||||
* "infinity", but leaves endptr pointing to "inity". |
||||
*/ |
||||
#define HAVE_BUGGY_IRIX_STRTOD |
Loading…
Reference in new issue