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

Commit 3a2a368

Browse files
committed
Moved two defines required for FreeBSD into Makefile.global
The idea is that its right beside PORTNAME, so if it doesn't apply to the OS in question, it can be rememberd to disable it...
1 parent d602a35 commit 3a2a368

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/Makefile.global

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.1.1.1 1996/07/09 06:21:07 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.2 1996/07/13 07:37:33 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -56,7 +56,11 @@
5656
# until after this file is processed!
5757
# make sure that you have no whitespaces after the PORTNAME setting
5858
# or the makefiles can get confused
59-
PORTNAME= alpha
59+
PORTNAME= BSD44_derived
60+
61+
# FreeBSD 2.1R with new Flex v2.5.2 in /usr/local
62+
LEX = flex
63+
LDADD+= -L/usr/local/lib -lfl
6064

6165
# POSTGRESLOGIN is the login name of the user who gets special
6266
# privileges within the database. By default it is "postgres", but
@@ -68,7 +72,7 @@ POSTGRESLOGIN= postgres
6872
# For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR
6973
# and other target destinations are rooted. Of course, each of these is
7074
# changable separately.
71-
POSTGRESDIR= /private/postgres95
75+
POSTGRESDIR= /usr/local/pg95
7276

7377
# SRCDIR specifies where the source files are.
7478
SRCDIR= $(POSTGRESDIR)/src

0 commit comments

Comments
 (0)