Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
1bdbf409
Commit
1bdbf409
authored
Aug 20, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bring in changes to READLINE/HISTORY defines
parent
c801ca09
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
src/Makefile.global
src/Makefile.global
+8
-6
src/bin/psql/Makefile
src/bin/psql/Makefile
+3
-5
No files found.
src/Makefile.global
View file @
1bdbf409
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.2
1 1996/08/19 13:50:41
scrappy Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.2
2 1996/08/20 05:04:06
scrappy Exp $
#
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
...
...
@@ -59,7 +59,7 @@
# until after this file is processed!
# make sure that you have no whitespaces after the PORTNAME setting
# or the makefiles can get confused
PORTNAME
=
svr4
PORTNAME
=
BSD44_derived
# SRCDIR specifies where the source files are.
SRCDIR
=
/home/tools/postgres95-1.02/src
...
...
@@ -157,10 +157,12 @@ EUROPEAN_DATES = 1
USE_READLINE
=
true
# directories for the readline and history libraries.
READLINE_INCDIR
=
/home/tools/include
HISTORY_INCDIR
=
/home/tools/include
-I
/home/tools/include/readline
READLINE_LIBDIR
=
/home/tools/lib
HISTORY_LIBDIR
=
/home/tools/lib
READLINE_INCDIR
=
-I
/home/tools/include
READLINE_LIBDIR
=
-L
/home/tools/lib
# use the following if your readline has a separate history lib
#HISTORY_INCDIR= -I/home/tools/include -I/home/tools/include/readline
#HISTORY_LIBDIR= -L/home/tools/lib
# If you do not plan to use Host based authentication,
# comment out the following line
...
...
src/bin/psql/Makefile
View file @
1bdbf409
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
4 1996/07/25 20:01:51
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
5 1996/08/20 05:04:13
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -22,7 +22,7 @@ include ../Makefile.global
#
ifeq
($(USE_READLINE), true)
CFLAGS
+=
-I
$(READLINE_INCDIR)
-I
$(HISTORY_INCDIR
)
CFLAGS
+=
$(READLINE_INC)
$(HISTORY_INC
)
# if you are using an older readline that uses #include "readline.h" instead
# of #include <readline/readline.h>,
...
...
@@ -30,9 +30,7 @@ ifeq ($(USE_READLINE), true)
# CFLAGS += -DOLD_READLINE
LIBCURSES
=
-lcurses
LD_ADD
+=
-L
$(READLINE_LIBDIR)
-L
$(HISTORY_LIBDIR)
-lreadline
-lhistory
$(LIBCURSES)
# use the following if your readline has no separate history lib
# LD_ADD += -L$(READLINE_LIBDIR) -lreadline $(LIBCURSES)
LD_ADD
+=
$(READLINE_LIB)
$(HISTORY_LIB)
$(LIBCURSES)
ifeq
($(PORTNAME), ultrix4)
LD_ADD
+=
-ltermcap
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment