File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Makefile,v 1.8 1996/10/19 06:33:52 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Makefile,v 1.9 1996/10/21 06:56:55 bryanh Exp $
11
11
#
12
12
# NOTES
13
13
# objdir - location of the objects and generated files (eg. obj)
@@ -26,6 +26,11 @@ ETAGS = etags
26
26
XARGS = xargs
27
27
28
28
.DEFAULT all :
29
+ @if test $(PORTNAME ) = UNDEFINED; then \
30
+ echo You must set the PORTNAME value in Makefile.global before \
31
+ you can build Postgres. ; \
32
+ false ; \
33
+ fi
29
34
$(MAKE ) -C backend $@
30
35
$(MAKE ) -C libpq $@
31
36
ifeq ($(HAVE_Cplusplus ) , true)
38
43
ifneq ($(wildcard $(MKDIR ) /../../doc) , )
39
44
$(MAKE) -C ../doc $@
40
45
endif
41
- @-chown -R $(POSTGRESLOGIN) $(POSTGRESDIR) 2>/dev/null
42
46
@if test $@. = all. -o $@. = .; then \
43
47
echo All of Postgres95 is successfully made. Ready to install. ;\
44
48
fi
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.40 1996/10/19 06:33:55 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.41 1996/10/21 06:56:57 bryanh Exp $
11
11
#
12
12
# NOTES
13
13
# This is seen by any Makefiles that include mk/postgres.mk. To
59
59
# until after this file is processed!
60
60
# make sure that you have no whitespaces after the PORTNAME setting
61
61
# or the makefiles can get confused
62
- PORTNAME= BSD44_derived
62
+ PORTNAME= UNDEFINED
63
63
64
64
# SRCDIR specifies where the source files are.
65
65
SRCDIR= /usr/local/postgres95/src
@@ -117,12 +117,13 @@ POSTPORT= 5432
117
117
#
118
118
# NOTE also that databases with different NAMEDATALEN's cannot interoperate!
119
119
#
120
+ # THERE ARE REDUNDANT DEFINITIONS OF THESE VALUES IN config.h.
121
+ # Don't change anything here without changing it there too.
122
+
120
123
NAMEDATALEN = 32
121
124
# OIDNAMELEN should be set to NAMEDATALEN + sizeof(Oid)
122
125
OIDNAMELEN = 36
123
126
124
- CFLAGS+= -DNAMEDATALEN=$(NAMEDATALEN) -DOIDNAMELEN=$(OIDNAMELEN)
125
-
126
127
##############################################################################
127
128
#
128
129
# FEATURES
You can’t perform that action at this time.
0 commit comments