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
b19013cf
Commit
b19013cf
authored
Oct 31, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update pgaccess makefile for 0.98
parent
5b9d655b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
1 deletion
+44
-1
src/GNUmakefile.in
src/GNUmakefile.in
+2
-1
src/bin/pgaccess/Makefile.in
src/bin/pgaccess/Makefile.in
+31
-0
src/bin/pgaccess/pgaccess.sh
src/bin/pgaccess/pgaccess.sh
+9
-0
src/configure.in
src/configure.in
+2
-0
No files found.
src/GNUmakefile.in
View file @
b19013cf
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.4
4 1999/10/12 14:46:26
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.4
5 1999/10/31 11:50:02
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -91,6 +91,7 @@ distclean: clean
backend/utils/Gen_fmgrtab.sh \
bin/pg_dump/Makefile \
bin/pg_version/Makefile \
bin/pgaccess/Makefile \
bin/psql/Makefile \
bin/pgtclsh/mkMakefile.tcldefs.sh \
bin/pgtclsh/mkMakefile.tkdefs.sh \
...
...
src/bin/pgaccess/Makefile
→
src/bin/pgaccess/Makefile
.in
View file @
b19013cf
...
...
@@ -6,16 +6,26 @@
# Copyright (c) 1994, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile
,v 1.5 1999/10/30 21:21:50
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile
.in,v 1.1 1999/10/31 11:50:03
momjian Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
$(SRCDIR)/Makefile.global
.PHONY
:
all clean
all clean
:
all
:
pgaccess
pgaccess
:
pgaccess.sh
sed
-e
's/__wish__/@wish@/'
\
sed
-e
's/__POSTGRESDIR__/
$(POSTGRESDIR)
/'
\
pgaccess.sh
>
pgaccess
.PHONY
:
install
install
:
$(INSTALL)
$(INSTL_EXE_OPTS)
pgaccess
$(BINDIR)
/pgaccess
$(INSTALL)
$(INSTL_EXE_OPTS)
main.tcl
$(POSTGRESDIR)
/pgaccess
$(INSTALL)
$(INSTL_EXE_OPTS)
lib/
*
$(POSTGRESDIR)
/pgaccess/lib
# $(INSTALL) $(INSTL_EXE_OPTS) lib/help/* $(POSTGRESDIR)/pgaccess/lib/help
# $(INSTALL) $(INSTL_EXE_OPTS) lib/languages/* $(POSTGRESDIR)/pgaccess/lib/languages
clean
:
rm
-f
pgaccess
src/bin/pgaccess/pgaccess
→
src/bin/pgaccess/pgaccess
.sh
View file @
b19013cf
#!/bin/sh
PATH_TO_WISH
=
/usr/bin/wish
PGACCESS_HOME
=
/usr/local
/pgaccess
PATH_TO_WISH
=
__wish__
PGACCESS_HOME
=
__POSTGRESDIR__
/pgaccess
export
PATH_TO_WISH
export
PGACCESS_HOME
exec
${
PATH_TO_WISH
}
${
PGACCESS_HOME
}
/main.tcl
"
$@
"
exec
$(
PATH_TO_WISH
)
$(
PGACCESS_HOME
)
/main.tcl
"
$@
"
src/configure.in
View file @
b19013cf
...
...
@@ -1120,6 +1120,7 @@ then
else
AC_MSG_RESULT($TK_CONFIG_SH)
AC_SUBST(TK_CONFIG_SH)
AC_PATH_PROG(wish, wish)
fi
fi
...
...
@@ -1213,6 +1214,7 @@ AC_OUTPUT(
backend/utils/Gen_fmgrtab.sh
bin/pg_dump/Makefile
bin/pg_version/Makefile
bin/pgaccess/Makefile
bin/psql/Makefile
bin/pgtclsh/mkMakefile.tcldefs.sh
bin/pgtclsh/mkMakefile.tkdefs.sh
...
...
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