Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1dfde61

Browse files
committed
Make configure more automated, from Brook Milligan.
1 parent cf1bfb3 commit 1dfde61

File tree

4 files changed

+268
-202
lines changed

4 files changed

+268
-202
lines changed

src/GNUmakefile.in

Lines changed: 2 additions & 2 deletions
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.17 1997/10/02 00:59:35 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.18 1997/10/30 04:46:37 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -65,7 +65,7 @@ install:
6565
ifneq ($(wildcard man), )
6666
$(MAKE) -C man install
6767
endif
68-
more -e ../register.txt
68+
more ../register.txt
6969

7070
clean:
7171
@if test $(PORTNAME) = UNDEFINED; then \

src/Makefile.global.in

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.26 1997/08/17 00:39:02 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.27 1997/10/30 04:46:39 momjian Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -159,15 +159,17 @@ endif
159159
# location of Tcl/Tk headers and libraries
160160
#
161161
# Uncomment this to build the tcl utilities.
162-
# USE_TCL= true
162+
USE_TCL= @USE_TCL@
163163
# customize these to your site's needs
164164
#
165-
TCL_INCDIR= /home/tools/include
166-
TCL_LIBDIR= /home/tools/lib
167-
TCL_LIB= -ltcl7.5
168-
TK_INCDIR= /home/tools/include
169-
TK_LIBDIR= /home/tools/lib
170-
TK_LIB= -ltk4.1
165+
TCL_INCDIR= /usr/local/include
166+
TCL_LIBDIR= /usr/local/lib
167+
TCL_LIB= -ltcl80
168+
TK_INCDIR= /usr/local/include
169+
TK_LIBDIR= /usr/local/lib
170+
TK_LIB= -ltk80
171+
172+
USE_PERL= @USE_PERL@
171173

172174
X11_INCDIR= /usr/include
173175
X11_LIBDIR= /usr/lib

0 commit comments

Comments
 (0)