Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaf8df21

Browse files
committed
Add missing tcl *.in files.
1 parentf731abe commitaf8df21

File tree

4 files changed

+52
-32
lines changed

4 files changed

+52
-32
lines changed

‎src/GNUmakefile.in

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.35 1998/10/12 05:07:53 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.36 1998/10/16 17:00:42 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -78,6 +78,14 @@ distclean: clean
7878
bin/psql/Makefile \
7979
bin/pgtclsh/mkMakefile.tcltkdefs.sh \
8080
bin/pgtclsh/Makefile.tcltkdefs \
81+
82+
? pgsql/src/bin/pgtclsh/mkMakefile.tcldefs.sh
83+
? pgsql/src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
84+
? pgsql/src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
85+
? pgsql/src/bin/pgtclsh/mkMakefile.tkdefs.sh
86+
? pgsql/src/bin/pgtclsh/Makefile.tkdefs
87+
? pgsql/src/bin/pgtclsh/Makefile.
88+
8189
bin/pg_dump/Makefile \
8290
bin/pg_version/Makefile \
8391
include/config.h \
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
if [!-f @TCL_CONFIG_SH@ ];then
3+
echo"@TCL_CONFIG_SH@ not found"
4+
echo"I need this file! Please make a symbolic link to this file"
5+
echo"and start make again."
6+
exit 1
7+
fi
8+
9+
cat @TCL_CONFIG_SH@|
10+
egrep'^TCL_'|
11+
whileread inp
12+
do
13+
evalevalecho$inp
14+
done>Makefile.tcldefs
15+
16+
exit 0
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
if [!-f @TK_CONFIG_SH@ ];then
3+
echo"@TK_CONFIG_SH@ not found"
4+
echo"I need this file! Please make a symbolic link to this file"
5+
echo"and start make again."
6+
exit 1
7+
fi
8+
9+
. @TK_CONFIG_SH@
10+
11+
cat @TK_CONFIG_SH@|
12+
egrep'^TK_'|
13+
whileread inp
14+
do
15+
evalevalecho$inp
16+
done>Makefile.tkdefs
17+
18+
exit 0

‎src/interfaces/perl5/Makefile.PL

Lines changed: 9 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
# Generated automatically from Makefile.PL.in by configure.
12
#-------------------------------------------------------
23
#
3-
# $Id: Makefile.PL,v 1.10 1998/10/1604:37:38 momjian Exp $
4+
# $Id: Makefile.PL,v 1.11 1998/10/1617:00:44 momjian Exp $
45
#
56
# Copyright (c) 1997, 1998 Edmund Mergl
67
#
@@ -10,44 +11,21 @@ use ExtUtils::MakeMaker;
1011
use Config;
1112
use strict;
1213

13-
# This Makefile.PL is intended for standalone use when PostgreSQL is
14-
# already installed. In that case, install the perl module as follows:
15-
#
16-
# setenv POSTGRES_HOME /path/to/root/of/installed/postgres
17-
# perl Makefile.PL
18-
# make
19-
# make test
20-
# make install
21-
22-
# During normal installation of PostgreSQL, this file will be replaced
23-
# by one derived from Makefile.PL.in so that the installed shared
24-
# library libpq.so will be found during installation of this module.
25-
# As a result, the POSTGRES_HOME environment variable need not be set
26-
# during PostgreSQL installation. Note that ../Makefile takes care of
27-
# the `perl Makefile.PL' command. Note also that it is still possible
28-
# to follow the standalone installation procedure, even after
29-
# configuring and installing PostgreSQL, because the `else'
30-
# conditional branch below is identical in both Makefile.PL and
31-
# Makefile.PL.in.
32-
3314
my%opts;
3415

3516
if (!$ENV{POSTGRES_HOME}) {
3617

3718
my$cwd =`pwd`;
3819
chop$cwd;
3920

40-
print"To install the perl interface for PostgreSQL do the following:\n";
41-
print" - install PostgreSQL\n";
42-
print" - set the POSTGRES_HOME environment variable appropriately\n";
43-
print" - in this directory ($cwd):\n";
44-
print" perl Makefile.PL\n";
45-
print" make\n";
46-
print" make test[ with a postmaster running ]\n";
47-
print" make install\n";
21+
%opts = (
22+
NAME=>'Pg',
23+
VERSION_FROM=>'Pg.pm',
24+
INC=>"-I$cwd/../libpq -I$cwd/../../include",
25+
OBJECT=>"Pg\$(OBJ_EXT)",
26+
LIBS=> ["-L/usr/local/pgsql/lib -L$cwd/../libpq -lpq"],
27+
);
4828

49-
exit(1);
50-
5129
}else {
5230

5331
%opts = (

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp