Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dbb219b

Browse files
committed
Add missing dlfcn.h includes. Fix "" vs <>.
1 parent 6f3da9a commit dbb219b

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

src/backend/port/dynloader/freebsd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
3939

4040
#include <sys/types.h>
4141
#include <nlist.h>
42-
#include "link.h"
42+
#include <link.h>
4343
#include <dlfcn.h>
4444

4545
#include <stdio.h>

src/backend/port/dynloader/freebsd.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: freebsd.h,v 1.9 2001/05/14 21:45:53 petere Exp $
10+
* $Id: freebsd.h,v 1.10 2001/05/15 16:55:27 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -17,6 +17,7 @@
1717
#include <sys/types.h>
1818
#include <nlist.h>
1919
#include <link.h>
20+
#include <dlfcn.h>
2021

2122
#include "utils/dynamic_loader.h"
2223

src/backend/port/dynloader/netbsd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
3939

4040
#include <sys/types.h>
4141
#include <nlist.h>
42-
#include "link.h"
42+
#include <link.h>
4343
#include <dlfcn.h>
4444

4545
#include <stdio.h>

src/backend/port/dynloader/netbsd.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: netbsd.h,v 1.4 2001/05/14 21:45:53 petere Exp $
10+
* $Id: netbsd.h,v 1.5 2001/05/15 16:55:27 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -16,7 +16,8 @@
1616

1717
#include <sys/types.h>
1818
#include <nlist.h>
19-
#include "link.h"
19+
#include <link.h>
20+
#include <dlfcn.h>
2021

2122
#include "utils/dynamic_loader.h"
2223

src/backend/port/dynloader/openbsd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
3939

4040
#include <sys/types.h>
4141
#include <nlist.h>
42-
#include "link.h"
42+
#include <link.h>
4343
#include <dlfcn.h>
4444

4545
#include <stdio.h>

src/backend/port/dynloader/openbsd.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: openbsd.h,v 1.4 2001/05/14 21:45:53 petere Exp $
10+
* $Id: openbsd.h,v 1.5 2001/05/15 16:55:27 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -16,7 +16,8 @@
1616

1717
#include <sys/types.h>
1818
#include <nlist.h>
19-
#include "link.h"
19+
#include <link.h>
20+
#include <dlfcn.h>
2021

2122
#include "utils/dynamic_loader.h"
2223

0 commit comments

Comments
 (0)