Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
1bdbf409
Commit
1bdbf409
authored
28 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
Bring in changes to READLINE/HISTORY defines
parent
c801ca09
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Makefile.global
+8
-6
8 additions, 6 deletions
src/Makefile.global
src/bin/psql/Makefile
+3
-5
3 additions, 5 deletions
src/bin/psql/Makefile
with
11 additions
and
11 deletions
src/Makefile.global
+
8
−
6
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
...
...
This diff is collapsed.
Click to expand it.
src/bin/psql/Makefile
+
3
−
5
View file @
1bdbf409
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
4
1996/0
7
/2
5 20:01:51
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
5
1996/0
8
/2
0 05:04:13
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -22,7 +22,7 @@ include ../Makefile.global
#
ifeq
($(USE_READLINE), true)
CFLAGS
+=
-I
$(
READLINE_INC
DIR
)
-I
$(
HISTORY_INC
DIR
)
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment