File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed 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.21 1996/08/19 13:50:41 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.22 1996/08/20 05:04:06 scrappy 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= svr4
62
+ PORTNAME= BSD44_derived
63
63
64
64
# SRCDIR specifies where the source files are.
65
65
SRCDIR= /home/tools/postgres95-1.02/src
@@ -157,10 +157,12 @@ EUROPEAN_DATES = 1
157
157
USE_READLINE= true
158
158
159
159
# directories for the readline and history libraries.
160
- READLINE_INCDIR= /home/tools/include
161
- HISTORY_INCDIR= /home/tools/include -I/home/tools/include/readline
162
- READLINE_LIBDIR= /home/tools/lib
163
- HISTORY_LIBDIR= /home/tools/lib
160
+ READLINE_INCDIR= -I/home/tools/include
161
+ READLINE_LIBDIR= -L/home/tools/lib
162
+
163
+ # use the following if your readline has a separate history lib
164
+ #HISTORY_INCDIR= -I/home/tools/include -I/home/tools/include/readline
165
+ #HISTORY_LIBDIR= -L/home/tools/lib
164
166
165
167
# If you do not plan to use Host based authentication,
166
168
# comment out the following line
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.4 1996/07/25 20:01:51 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.5 1996/08/20 05:04:13 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -22,17 +22,15 @@ include ../Makefile.global
22
22
#
23
23
24
24
ifeq ($(USE_READLINE ) , true)
25
- CFLAGS += -I $( READLINE_INCDIR ) -I $( HISTORY_INCDIR )
25
+ CFLAGS += $( READLINE_INC ) $( HISTORY_INC )
26
26
27
27
# if you are using an older readline that uses #include "readline.h" instead
28
28
# of #include <readline/readline.h>,
29
29
# uncomment this
30
30
# CFLAGS += -DOLD_READLINE
31
31
32
32
LIBCURSES = -lcurses
33
- LD_ADD += -L$(READLINE_LIBDIR ) -L$(HISTORY_LIBDIR ) -lreadline -lhistory $(LIBCURSES )
34
- # use the following if your readline has no separate history lib
35
- # LD_ADD += -L$(READLINE_LIBDIR) -lreadline $(LIBCURSES)
33
+ LD_ADD += $(READLINE_LIB ) $(HISTORY_LIB ) $(LIBCURSES )
36
34
37
35
ifeq ($(PORTNAME), ultrix4)
38
36
LD_ADD += -ltermcap
You can’t perform that action at this time.
0 commit comments