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
9c931e08
Commit
9c931e08
authored
Jan 28, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved readline stuff into Makefile.global.
parent
6ab9db7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
48 deletions
+26
-48
src/Makefile.global
src/Makefile.global
+26
-10
src/README.readline
src/README.readline
+0
-38
No files found.
src/Makefile.global
View file @
9c931e08
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.10
2 1997/01/26 20:21:43
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.10
3 1997/01/28 03:46:58
momjian Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
...
...
@@ -150,19 +150,35 @@ ENFORCE_ALIGNMENT= true
# 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
# 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
#
and READLINE_LIBDIR to reflect the location of the readline and history
#
headers
and libraries.
# decide to use them, change USE_READLINE to true and change
the other
#
defines to reflect the location of the readline and history headers
# and libraries.
#
USE_READLINE
=
false
# directories for the readline and history libraries.
#READLINE_INC= -I/home/tools/include
#READLINE_LIB= -L/home/tools/lib -lreadline
# not optional if USE_READLINE enabled
#READLINE_INC+= -DHAVE_LIBREADLINE
# use the following if your readline has a separate history lib
#HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline
#HISTORY_LIB= -L/home/tools/lib -lhistory
# if <readline.h>, define this
#READLINE_INC+= -DHAVE_READLINE_H
# 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
# in fact be what goes by the name "curses" on this system.
...
...
src/README.readline
deleted
100644 → 0
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
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