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
e9ca59fd
Commit
e9ca59fd
authored
Jun 14, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back out libpgtcl tcl/tksh includes.
parent
2635bef5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
46 deletions
+1
-46
configure.in
configure.in
+0
-2
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+1
-10
src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in
src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in
+0
-16
src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in
src/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in
+0
-18
No files found.
configure.in
View file @
e9ca59fd
...
...
@@ -1207,8 +1207,6 @@ AC_OUTPUT(
src/interfaces/libpq++/Makefile
src/interfaces/libpgeasy/Makefile
src/interfaces/libpgtcl/Makefile
src/interfaces/libpgtcl/mkMakefile.tcldefs.sh
src/interfaces/libpgtcl/mkMakefile.tkdefs.sh
src/interfaces/odbc/GNUmakefile
src/interfaces/odbc/Makefile.global
src/interfaces/python/GNUmakefile
...
...
src/interfaces/libpgtcl/Makefile.in
View file @
e9ca59fd
...
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.4
2 2000/06/13 09:16:39
momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.4
3 2000/06/14 17:07:31
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -19,14 +19,6 @@ include $(SRCDIR)/Makefile.global
CFLAGS
+=
-I
$(LIBPQDIR)
#
# Include definitions from the tclConfig.sh file
#
include
Makefile.tcldefs
ifeq
($(USE_TK), true)
include
Makefile.tkdefs
endif
ifdef
KRBVERS
CFLAGS
+=
$(KRBFLAGS)
endif
...
...
@@ -43,7 +35,6 @@ SHLIB_LINK+= $(findstring -lcrypt,$(LIBS))
# Shared library stuff, also default 'all' target
include
$(SRCDIR)/Makefile.shlib
.PHONY
:
install beforeinstall-headers install-headers
install
:
install-headers install-lib $(install-shlib-dep)
...
...
src/interfaces/libpgtcl/mkMakefile.tcldefs.sh.in
deleted
100644 → 0
View file @
2635bef5
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/interfaces/libpgtcl/mkMakefile.tkdefs.sh.in
deleted
100644 → 0
View file @
2635bef5
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
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