Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcd24163

Browse files
committed
Fix another passel of include-file breakage. Kris Jurka, Tom Lane
1 parentc743cc2 commitcd24163

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

‎src/backend/storage/buffer/buf_table.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
*
1414
*
1515
* IDENTIFICATION
16-
* $PostgreSQL: pgsql/src/backend/storage/buffer/buf_table.c,v 1.45 2006/07/1414:52:22 momjian Exp $
16+
* $PostgreSQL: pgsql/src/backend/storage/buffer/buf_table.c,v 1.46 2006/07/1416:59:19 tgl Exp $
1717
*
1818
*-------------------------------------------------------------------------
1919
*/
2020
#include"postgres.h"
2121

22+
#include"storage/bufmgr.h"
2223
#include"storage/buf_internals.h"
2324

2425

‎src/backend/storage/lmgr/lmgr.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lmgr.c,v 1.84 2006/07/1414:52:23 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lmgr.c,v 1.85 2006/07/1416:59:19 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515

1616
#include"postgres.h"
1717

1818
#include"access/subtrans.h"
19+
#include"access/transam.h"
20+
#include"access/xact.h"
1921
#include"miscadmin.h"
2022
#include"storage/lmgr.h"
2123
#include"storage/procarray.h"

‎src/backend/utils/adt/inet_net_ntop.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
1515
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*
17-
* $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_ntop.c,v 1.23 2006/07/1414:52:24 momjian Exp $
17+
* $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_ntop.c,v 1.24 2006/07/1416:59:19 tgl Exp $
1818
*/
1919

2020
#if defined(LIBC_SCCS)&& !defined(lint)
@@ -28,6 +28,7 @@ static const char rcsid[] = "Id: inet_net_ntop.c,v 1.1.2.2 2004/03/09 09:17:27 m
2828
#include<netinet/in.h>
2929
#include<arpa/inet.h>
3030

31+
#include"utils/builtins.h"
3132
#include"utils/inet.h"
3233

3334

‎src/backend/utils/adt/inet_net_pton.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
1515
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*
17-
* $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_pton.c,v 1.22 2006/07/1414:52:24 momjian Exp $
17+
* $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_pton.c,v 1.23 2006/07/1416:59:19 tgl Exp $
1818
*/
1919

2020
#if defined(LIBC_SCCS)&& !defined(lint)
@@ -30,6 +30,7 @@ static const char rcsid[] = "Id: inet_net_pton.c,v 1.4.2.3 2004/03/17 00:40:11 m
3030
#include<assert.h>
3131
#include<ctype.h>
3232

33+
#include"utils/builtins.h"
3334
#include"utils/inet.h"
3435

3536

‎src/backend/utils/adt/oracle_compat.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
*$PostgreSQL: pgsql/src/backend/utils/adt/oracle_compat.c,v 1.66 2006/07/1414:52:24 momjian Exp $
12+
*$PostgreSQL: pgsql/src/backend/utils/adt/oracle_compat.c,v 1.67 2006/07/1416:59:19 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -29,6 +29,7 @@
2929
#endif
3030

3131
#include"utils/builtins.h"
32+
#include"utils/pg_locale.h"
3233
#include"mb/pg_wchar.h"
3334

3435

‎src/interfaces/libpq/fe-print.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* didn't really belong there.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.71 2006/07/1414:52:27 momjian Exp $
13+
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.72 2006/07/1416:59:19 tgl Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -35,6 +35,7 @@
3535

3636
#include"libpq-fe.h"
3737
#include"libpq-int.h"
38+
#include"pqsignal.h"
3839

3940

4041
staticvoiddo_field(constPQprintOpt*po,constPGresult*res,

‎src/interfaces/libpq/fe-secure.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.84 2006/07/1414:52:27 momjian Exp $
14+
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.85 2006/07/1416:59:19 tgl Exp $
1515
*
1616
* NOTES
1717
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
@@ -85,6 +85,7 @@
8585

8686
#include"libpq-fe.h"
8787
#include"fe-auth.h"
88+
#include"pqsignal.h"
8889

8990
#ifdefWIN32
9091
#include"win32.h"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp