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

Commitb19013c

Browse files
committed
Update pgaccess makefile for 0.98
1 parent5b9d655 commitb19013c

File tree

6 files changed

+44
-32
lines changed

6 files changed

+44
-32
lines changed

‎src/GNUmakefile.in

Lines changed: 2 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.44 1999/10/12 14:46:26 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.45 1999/10/31 11:50:02 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -91,6 +91,7 @@ distclean: clean
9191
backend/utils/Gen_fmgrtab.sh \
9292
bin/pg_dump/Makefile \
9393
bin/pg_version/Makefile \
94+
bin/pgaccess/Makefile \
9495
bin/psql/Makefile \
9596
bin/pgtclsh/mkMakefile.tcldefs.sh \
9697
bin/pgtclsh/mkMakefile.tkdefs.sh \

‎src/bin/pgaccess/Makefile

Lines changed: 0 additions & 21 deletions
This file was deleted.

‎src/bin/pgaccess/Makefile.in

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile
4+
# Makefile for pgaccess
5+
#
6+
# Copyright (c) 1994, Regents of the University of California
7+
#
8+
# IDENTIFICATION
9+
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.1 1999/10/31 11:50:03 momjian Exp $
10+
#
11+
#-------------------------------------------------------------------------
12+
13+
SRCDIR= ../..
14+
include$(SRCDIR)/Makefile.global
15+
16+
all: pgaccess
17+
18+
pgaccess: pgaccess.sh
19+
sed -e's/__wish__/@wish@/'\
20+
sed -e's/__POSTGRESDIR__/$(POSTGRESDIR)/'\
21+
pgaccess.sh> pgaccess
22+
23+
install:
24+
$(INSTALL)$(INSTL_EXE_OPTS) pgaccess$(BINDIR)/pgaccess
25+
$(INSTALL)$(INSTL_EXE_OPTS) main.tcl$(POSTGRESDIR)/pgaccess
26+
$(INSTALL)$(INSTL_EXE_OPTS) lib/*$(POSTGRESDIR)/pgaccess/lib
27+
#$(INSTALL) $(INSTL_EXE_OPTS) lib/help/* $(POSTGRESDIR)/pgaccess/lib/help
28+
#$(INSTALL) $(INSTL_EXE_OPTS) lib/languages/* $(POSTGRESDIR)/pgaccess/lib/languages
29+
30+
clean:
31+
rm -f pgaccess

‎src/bin/pgaccess/pgaccess

Lines changed: 0 additions & 10 deletions
This file was deleted.

‎src/bin/pgaccess/pgaccess.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
PATH_TO_WISH= __wish__
4+
PGACCESS_HOME=__POSTGRESDIR__/pgaccess
5+
6+
export PATH_TO_WISH
7+
export PGACCESS_HOME
8+
9+
exec$(PATH_TO_WISH)$(PGACCESS_HOME)/main.tcl"$@"

‎src/configure.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,7 @@ then
11201120
else
11211121
AC_MSG_RESULT($TK_CONFIG_SH)
11221122
AC_SUBST(TK_CONFIG_SH)
1123+
AC_PATH_PROG(wish, wish)
11231124
fi
11241125
fi
11251126

@@ -1213,6 +1214,7 @@ AC_OUTPUT(
12131214
backend/utils/Gen_fmgrtab.sh
12141215
bin/pg_dump/Makefile
12151216
bin/pg_version/Makefile
1217+
bin/pgaccess/Makefile
12161218
bin/psql/Makefile
12171219
bin/pgtclsh/mkMakefile.tcldefs.sh
12181220
bin/pgtclsh/mkMakefile.tkdefs.sh

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp