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

Commit10ff1ee

Browse files
committed
First clean compile without a "PORTNAME" variable being set...
1 parent93e7446 commit10ff1ee

File tree

10 files changed

+234
-251
lines changed

10 files changed

+234
-251
lines changed

‎src/backend/port/Makefile.in

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,32 @@
1919
# be converted to Method 2.
2020
#
2121
# IDENTIFICATION
22-
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.7 1997/12/19 02:56:16 scrappy Exp $
22+
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.8 1997/12/20 00:10:14 scrappy Exp $
2323
#
2424
#-------------------------------------------------------------------------
2525

2626
SRCDIR=../..
2727
include ../../Makefile.global
2828

29-
OBJS = @PORTNAME@/SUBSYS.o @INET_ATON@ @STRERROR@ @RANDOM@ @SRANDOM@
29+
INCLUDE_OPT = -I..
30+
31+
CFLAGS+= INCLUDE_OPT
32+
33+
OBJS = dynloader.o @INET_ATON@ @STRERROR@ @RANDOM@ @SRANDOM@
3034
OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@
3135

32-
all:submakeSUBSYS.o
36+
all: SUBSYS.o
3337

3438
SUBSYS.o:$(OBJS)
3539
$(LD) -r -o SUBSYS.o$(OBJS)
3640

37-
.PHONY: submake clean dep
38-
39-
submake:
40-
$(MAKE) -C @PORTNAME@ SUBSYS.o
41+
.PHONY: clean dep
4142

4243
clean:
4344
rm -f SUBSYS.o$(OBJS)
44-
$(MAKE) -C @PORTNAME@ clean
4545

4646
dependdep:
4747
$(CC) -MM$(INCLUDE_OPT)*.c>depend
48-
$(MAKE) -C @PORTNAME@$@
4948

5049
ifeq (depend,$(wildcard depend))
5150
include depend

‎src/backend/port/dynloader/bsd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)dl.c5.4 (Berkeley) 2/23/91";
4444
#include<stdio.h>
4545
#include<stdlib.h>
4646

47-
#include"port-protos.h"
47+
#include"dynloader.h"
4848

4949
staticcharerror_message[BUFSIZ];
5050

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.18 1997/12/19 02:08:01 scrappy Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.19 1997/12/20 00:10:29 scrappy Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -28,10 +28,6 @@
2828
#include<string.h>
2929
#endif
3030

31-
#ifndefHAVE_FCVT
32-
# include<port-protos.h>/* ecvt(), fcvt() */
33-
#endif
34-
3531
#ifndefINT_MAX
3632
#defineINT_MAX (0x7FFFFFFFL)
3733
#endif

‎src/backend/utils/fmgr/dfmgr.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.13 1997/09/18 20:22:27 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.14 1997/12/20 00:10:42 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -26,7 +26,8 @@
2626
#include"access/heapam.h"
2727
#include"nodes/pg_list.h"
2828

29-
#include"port-protos.h"/* system specific function prototypes */
29+
#include"dynloader.h"
30+
3031
#ifdef__ultrix
3132
#include<dl.h>
3233
#endif

‎src/backend/utils/init/postinit.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.20 1997/11/24 05:09:17 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.21 1997/12/20 00:10:47 scrappy Exp $
1111
*
1212
* NOTES
1313
*InitPostgres() is the function called from PostgresMain
@@ -66,7 +66,6 @@
6666
#include"catalog/catname.h"
6767
#include"catalog/pg_database.h"
6868

69-
#include"port-protos.h"
7069
#include"libpq/libpq-be.h"
7170

7271
staticvoidVerifySystemDatabase(void);

‎src/bin/initlocation/initlocation

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#
1313
#
1414
# IDENTIFICATION
15-
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation,v 1.2 1997/12/09 03:11:16 scrappy Exp $
15+
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation,v 1.3 1997/12/20 00:10:51 scrappy Exp $
1616
#
1717
#-------------------------------------------------------------------------
1818

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp