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
9c931e08
Commit
9c931e08
authored
28 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Moved readline stuff into Makefile.global.
parent
6ab9db7b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Makefile.global
+26
-10
26 additions, 10 deletions
src/Makefile.global
src/README.readline
+0
-38
0 additions, 38 deletions
src/README.readline
with
26 additions
and
48 deletions
src/Makefile.global
+
26
−
10
View file @
9c931e08
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.10
2
1997/01/2
6 20:21:43
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.10
3
1997/01/2
8 03:46:58
momjian Exp $
#
#
# NOTES
# NOTES
# Essentially all Postgres make files include this file and use the
# Essentially all Postgres make files include this file and use the
...
@@ -150,19 +150,35 @@ ENFORCE_ALIGNMENT= true
...
@@ -150,19 +150,35 @@ ENFORCE_ALIGNMENT= true
# psql does not require the GNU readline and history libraries. Hence, we
# psql does not require the GNU readline and history libraries. Hence, we
# do not compile with them by default. However, there are hooks in the
# do not compile with them by default. However, there are hooks in the
# program which supports the use of GNU readline and history. Should you
# program which supports the use of GNU readline and history. Should you
# decide to use them, change USE_READLINE to true and change
READLINE_INCDIR
# decide to use them, change USE_READLINE to true and change
the other
#
and READLINE_LIBDIR
to reflect the location of the readline and history
#
defines
to reflect the location of the readline and history
headers
#
headers
and libraries.
# and libraries.
#
#
USE_READLINE
=
false
USE_READLINE
=
false
# directories for the readline and history libraries.
# not optional if USE_READLINE enabled
#READLINE_INC= -I/home/tools/include
#READLINE_INC+= -DHAVE_LIBREADLINE
#READLINE_LIB= -L/home/tools/lib -lreadline
# use the following if your readline has a separate history lib
# if <readline.h>, define this
#HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline
#READLINE_INC+= -DHAVE_READLINE_H
#HISTORY_LIB= -L/home/tools/lib -lhistory
# if you have either <history.h> or <readline/history.h>
#READLINE_INC+= -DHAVE_HISTORY
# if you have a libhistory.a
#READLINE_INC+= -DHAVE_LIBHISTORY
# where to find includes
#READLINE_INC+= -I/home/tools/include
# where to find library files
#READLINE_LIB+= -L/home/tools/lib
# not optional if USE_READLINE enabled
#READLINE_LIB+= -lreadline
# if you have a libhistory.a
#READLINE_LIB+= -lhistory
# curses is required by readline. Ncurses has obsoleted curses, and may
# curses is required by readline. Ncurses has obsoleted curses, and may
# in fact be what goes by the name "curses" on this system.
# in fact be what goes by the name "curses" on this system.
...
...
This diff is collapsed.
Click to expand it.
src/README.readline
deleted
100644 → 0
+
0
−
38
View file @
6ab9db7b
In preparation for using configure to compile PostgreSQL, various
define cleanups have been performed.
The most confusing has been psql's use of -lreadline
In order to turn on support for readline, your Makefile.custom file
*must* contain lines similar to:
USE_READLINE= yes
READLINE_INC=
READLINE_LIB=
READLINE_INC can contain:
-DHAVE_LIBREADLINE
not optional if USE_READLINE enabled
-DHAVE_READLINE_H
if <readline.h>, define this
-DHAVE_HISTORY
if you have either <history.h> or <readline/history.h>
-DHAVE_LIBHISTORY
if you have a libhistory.a
READLINE_LIB can contain:
-lreadline
not optional if USE_READLINE enabled
-lhistory
if you have a libhistory.a
Once support for configure is integrated into the distribution, this will
all be hidden "behind the scenes"
Marc G. Fournier
scrappy@hub.org
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