aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/dynloader/irix.h
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2013-10-18 08:14:21 -0400
committerRobert Haas <rhaas@postgresql.org>2013-10-18 08:14:21 -0400
commitea91a6be89575095f61ebf36d67c2df98be093db (patch)
tree0fd094eccff27622e6496452962c0ca9568b3e51 /src/backend/port/dynloader/irix.h
parentf39418e9b36987ce1dac0c55da1452e43ec46e15 (diff)
downloadpostgresql-ea91a6be89575095f61ebf36d67c2df98be093db.tar.gz
postgresql-ea91a6be89575095f61ebf36d67c2df98be093db.zip
Remove IRIX port.
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.
Diffstat (limited to 'src/backend/port/dynloader/irix.h')
-rw-r--r--src/backend/port/dynloader/irix.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/backend/port/dynloader/irix.h b/src/backend/port/dynloader/irix.h
deleted file mode 100644
index d845b167256..00000000000
--- a/src/backend/port/dynloader/irix.h
+++ /dev/null
@@ -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 */