summaryrefslogtreecommitdiff
path: root/databases/postgresql91/files
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2017-05-24 19:51:12 +0000
committeradam <adam@pkgsrc.org>2017-05-24 19:51:12 +0000
commite49c3dda120534df32e1410204a0dee2f215afa8 (patch)
tree8084063d365122bf3424e2a6ff9d8b7e08fb8fe7 /databases/postgresql91/files
parente8292fa345efa6fd2298190ea44618daf222867f (diff)
downloadpkgsrc-e49c3dda120534df32e1410204a0dee2f215afa8.tar.gz
Removed databases/postgresql91
Diffstat (limited to 'databases/postgresql91/files')
-rw-r--r--databases/postgresql91/files/GNUmakefile.libpq20
-rw-r--r--databases/postgresql91/files/dynloader-ltdl.h17
2 files changed, 0 insertions, 37 deletions
diff --git a/databases/postgresql91/files/GNUmakefile.libpq b/databases/postgresql91/files/GNUmakefile.libpq
deleted file mode 100644
index be6504adaf4..00000000000
--- a/databases/postgresql91/files/GNUmakefile.libpq
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD: GNUmakefile.libpq,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $
-#
-# This GNUmakefile overrides the `all' target of $(libpq_srcdir)/Makefile
-# to be empty if INSTALLED_LIBPQ is defined. This handles the submake
-# targets sprinkled throughout the PostgreSQL Makefiles that execute
-#
-# @$(MAKE) -C $(libpq_builddir) all
-#
-# to ensure that the libpq libraries are built first. If INSTALLED_LIBPQ
-# is defined, then have the `all' target simple return success.
-
-ifdef INSTALLED_LIBPQ
-all:
- @test -f libpq.a || touch libpq.a
-endif
-
-%: force
- @$(MAKE) -f Makefile $@
-
-force: ;
diff --git a/databases/postgresql91/files/dynloader-ltdl.h b/databases/postgresql91/files/dynloader-ltdl.h
deleted file mode 100644
index 8a0ea5002df..00000000000
--- a/databases/postgresql91/files/dynloader-ltdl.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* $NetBSD: dynloader-ltdl.h,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ */
-
-/*
- * dynamic loader based on libltdl
- */
-#ifndef PORT_PROTOS_H
-#define PORT_PROTOS_H
-
-#include <ltdl.h>
-#include "utils/dynamic_loader.h"
-
-#define pg_dlopen(a) ((void *)lt_dlopen(a))
-#define pg_dlsym(a,b) lt_dlsym((lt_dlhandle)(a), (b))
-#define pg_dlclose(a) lt_dlclose((lt_dlhandle)(a))
-#define pg_dlerror lt_dlerror
-
-#endif /* PORT_PROTOS_H */