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
953ca76b
Commit
953ca76b
authored
Mar 23, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more tcl/tk fixes
parent
97e461b1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
12 deletions
+7
-12
src/Makefile.global.in
src/Makefile.global.in
+1
-3
src/bin/pgtclsh/Makefile
src/bin/pgtclsh/Makefile
+2
-2
src/configure.in
src/configure.in
+2
-4
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+2
-3
No files found.
src/Makefile.global.in
View file @
953ca76b
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.3
6 1998/03/23 04:07:59
momjian Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.3
7 1998/03/23 06:01:47
momjian Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
...
...
@@ -160,9 +160,7 @@ endif
USE_TCL
=
@USE_TCL@
# customize these to your site's needs
#
TCL_INCDIR
=
@TCL_INCDIR@
TCL_LIB
=
@TCL_LIB@
TK_INCDIR
=
@TK_INCDIR@
TK_LIB
=
@TK_LIB@
USE_PERL
=
@USE_PERL@
...
...
src/bin/pgtclsh/Makefile
View file @
953ca76b
...
...
@@ -7,14 +7,14 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.1
2 1998/03/23 04:08:05
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.1
3 1998/03/23 06:02:39
momjian Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
CFLAGS
+=
$(X_CFLAGS)
-I
$(
TCL_INCDIR)
-I
$(TK_INCDIR)
-I
$(
SRCDIR)
/interfaces/libpgtcl
CFLAGS
+=
$(X_CFLAGS)
-I
$(SRCDIR)
/interfaces/libpgtcl
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
...
...
src/configure.in
View file @
953ca76b
...
...
@@ -563,12 +563,11 @@ dnl Check for tcl.h
if test "$USE_TCL" = "true"
then
TCL_INCDIR=no
AC_CHECK_HEADER(tcl.h, TCL_INCDIR=)
AC_CHECK_HEADER(tcl.h, TCL_INCDIR=
yes
)
if test "$TCL_INCDIR" = "no"; then
AC_MSG_WARN(tcl support disabled; tcl.h missing)
USE_TCL=
fi
AC_SUBST(TCL_INCDIR)
fi
dnl Check for Tcl archive
...
...
@@ -600,12 +599,11 @@ ice_save_LDFLAGS="$LDFLAGS"
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
TK_INCDIR=no
AC_CHECK_HEADER(tk.h, TK_INCDIR=)
AC_CHECK_HEADER(tk.h, TK_INCDIR=
yes
)
if test "$TK_INCDIR" = "no"; then
AC_MSG_WARN(tcl support disabled; tk.h missing)
USE_TCL=
fi
AC_SUBST(TK_INCDIR)
LIBS="$ice_save_LIBS"
CFLAGS="$ice_save_CFLAGS"
...
...
src/interfaces/libpgtcl/Makefile.in
View file @
953ca76b
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.
4 1998/03/15 08:02:55 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.
5 1998/03/23 06:03:04 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -17,8 +17,7 @@ include $(SRCDIR)/Makefile.global
INCLUDE_OPT
=
\
-I
$(SRCDIR)
/backend
\
-I
$(SRCDIR)
/include
\
-I
$(LIBPQDIR)
\
-I
$(TCL_INCDIR)
-I
$(LIBPQDIR)
PORTNAME
=
@PORTNAME@
...
...
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