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
af8df21b
Commit
af8df21b
authored
Oct 16, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing tcl *.in files.
parent
f731abe6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
32 deletions
+52
-32
src/GNUmakefile.in
src/GNUmakefile.in
+9
-1
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
+16
-0
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
+18
-0
src/interfaces/perl5/Makefile.PL
src/interfaces/perl5/Makefile.PL
+9
-31
No files found.
src/GNUmakefile.in
View file @
af8df21b
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.3
5 1998/10/12 05:07:53
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.3
6 1998/10/16 17:00:42
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -78,6 +78,14 @@ distclean: clean
bin/psql/Makefile \
bin/pgtclsh/mkMakefile.tcltkdefs.sh \
bin/pgtclsh/Makefile.tcltkdefs \
? pgsql/src/bin/pgtclsh/mkMakefile.tcldefs.sh
? pgsql/src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
? pgsql/src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
? pgsql/src/bin/pgtclsh/mkMakefile.tkdefs.sh
? pgsql/src/bin/pgtclsh/Makefile.tkdefs
? pgsql/src/bin/pgtclsh/Makefile.
bin/pg_dump/Makefile \
bin/pg_version/Makefile \
include/config.h \
...
...
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
0 → 100644
View file @
af8df21b
if [ ! -f @TCL_CONFIG_SH@ ]; then
echo "@TCL_CONFIG_SH@ not found"
echo "I need this file! Please make a symbolic link to this file"
echo "and start make again."
exit 1
fi
cat @TCL_CONFIG_SH@ |
egrep '^TCL_' |
while read inp
do
eval eval echo $inp
done >Makefile.tcldefs
exit 0
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
0 → 100644
View file @
af8df21b
if [ ! -f @TK_CONFIG_SH@ ]; then
echo "@TK_CONFIG_SH@ not found"
echo "I need this file! Please make a symbolic link to this file"
echo "and start make again."
exit 1
fi
. @TK_CONFIG_SH@
cat @TK_CONFIG_SH@ |
egrep '^TK_' |
while read inp
do
eval eval echo $inp
done >Makefile.tkdefs
exit 0
src/interfaces/perl5/Makefile.PL
View file @
af8df21b
# Generated automatically from Makefile.PL.in by configure.
#-------------------------------------------------------
#
# $Id: Makefile.PL,v 1.1
0 1998/10/16 04:37:38
momjian Exp $
# $Id: Makefile.PL,v 1.1
1 1998/10/16 17:00:44
momjian Exp $
#
# Copyright (c) 1997, 1998 Edmund Mergl
#
...
...
@@ -10,26 +11,6 @@ use ExtUtils::MakeMaker;
use
Config
;
use
strict
;
# This Makefile.PL is intended for standalone use when PostgreSQL is
# already installed. In that case, install the perl module as follows:
#
# setenv POSTGRES_HOME /path/to/root/of/installed/postgres
# perl Makefile.PL
# make
# make test
# make install
# During normal installation of PostgreSQL, this file will be replaced
# by one derived from Makefile.PL.in so that the installed shared
# library libpq.so will be found during installation of this module.
# As a result, the POSTGRES_HOME environment variable need not be set
# during PostgreSQL installation. Note that ../Makefile takes care of
# the `perl Makefile.PL' command. Note also that it is still possible
# to follow the standalone installation procedure, even after
# configuring and installing PostgreSQL, because the `else'
# conditional branch below is identical in both Makefile.PL and
# Makefile.PL.in.
my
%
opts
;
if
(
!
$ENV
{
POSTGRES_HOME
})
{
...
...
@@ -37,16 +18,13 @@ if (! $ENV{POSTGRES_HOME}) {
my
$cwd
=
`
pwd
`;
chop
$cwd
;
print
"
To install the perl interface for PostgreSQL do the following:
\n
";
print
"
- install PostgreSQL
\n
";
print
"
- set the POSTGRES_HOME environment variable appropriately
\n
";
print
"
- in this directory (
$cwd
):
\n
";
print
"
perl Makefile.PL
\n
";
print
"
make
\n
";
print
"
make test [ with a postmaster running ]
\n
";
print
"
make install
\n
";
exit
(
1
);
%
opts
=
(
NAME
=>
'
Pg
',
VERSION_FROM
=>
'
Pg.pm
',
INC
=>
"
-I
$cwd
/../libpq -I
$cwd
/../../include
",
OBJECT
=>
"
Pg
\
$(OBJ_EXT)
",
LIBS
=>
["
-L/usr/local/pgsql/lib -L
$cwd
/../libpq -lpq
"],
);
}
else
{
...
...
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