aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/port/dynloader/freebsd.c2
-rw-r--r--src/backend/port/dynloader/freebsd.h3
-rw-r--r--src/backend/port/dynloader/netbsd.c2
-rw-r--r--src/backend/port/dynloader/netbsd.h5
-rw-r--r--src/backend/port/dynloader/openbsd.c2
-rw-r--r--src/backend/port/dynloader/openbsd.h5
6 files changed, 11 insertions, 8 deletions
diff --git a/src/backend/port/dynloader/freebsd.c b/src/backend/port/dynloader/freebsd.c
index da05e93254e..c2a2e31f27c 100644
--- a/src/backend/port/dynloader/freebsd.c
+++ b/src/backend/port/dynloader/freebsd.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <sys/types.h>
#include <nlist.h>
-#include "link.h"
+#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
diff --git a/src/backend/port/dynloader/freebsd.h b/src/backend/port/dynloader/freebsd.h
index fe75a47f0c2..ce5069f876c 100644
--- a/src/backend/port/dynloader/freebsd.h
+++ b/src/backend/port/dynloader/freebsd.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: freebsd.h,v 1.9 2001/05/14 21:45:53 petere Exp $
+ * $Id: freebsd.h,v 1.10 2001/05/15 16:55:27 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -17,6 +17,7 @@
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
+#include <dlfcn.h>
#include "utils/dynamic_loader.h"
diff --git a/src/backend/port/dynloader/netbsd.c b/src/backend/port/dynloader/netbsd.c
index 0670b22760e..f2fd6666a25 100644
--- a/src/backend/port/dynloader/netbsd.c
+++ b/src/backend/port/dynloader/netbsd.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <sys/types.h>
#include <nlist.h>
-#include "link.h"
+#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
diff --git a/src/backend/port/dynloader/netbsd.h b/src/backend/port/dynloader/netbsd.h
index 21b434e8723..a1b48fa8304 100644
--- a/src/backend/port/dynloader/netbsd.h
+++ b/src/backend/port/dynloader/netbsd.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: netbsd.h,v 1.4 2001/05/14 21:45:53 petere Exp $
+ * $Id: netbsd.h,v 1.5 2001/05/15 16:55:27 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,7 +16,8 @@
#include <sys/types.h>
#include <nlist.h>
-#include "link.h"
+#include <link.h>
+#include <dlfcn.h>
#include "utils/dynamic_loader.h"
diff --git a/src/backend/port/dynloader/openbsd.c b/src/backend/port/dynloader/openbsd.c
index 0670b22760e..f2fd6666a25 100644
--- a/src/backend/port/dynloader/openbsd.c
+++ b/src/backend/port/dynloader/openbsd.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <sys/types.h>
#include <nlist.h>
-#include "link.h"
+#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
diff --git a/src/backend/port/dynloader/openbsd.h b/src/backend/port/dynloader/openbsd.h
index 155600e6974..deb0f4434c9 100644
--- a/src/backend/port/dynloader/openbsd.h
+++ b/src/backend/port/dynloader/openbsd.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: openbsd.h,v 1.4 2001/05/14 21:45:53 petere Exp $
+ * $Id: openbsd.h,v 1.5 2001/05/15 16:55:27 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,7 +16,8 @@
#include <sys/types.h>
#include <nlist.h>
-#include "link.h"
+#include <link.h>
+#include <dlfcn.h>
#include "utils/dynamic_loader.h"