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

Commit 25a8c05

Browse files
committed
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
Hi -- a couple of small items concerning the January 23rd snapshot: the inclusion of the Kerberos stuff in one Makefile, a "leading tab" cleanup in another, and a fix for a typo in the configure script.
1 parent 81dc201 commit 25a8c05

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

src/bin/pgtclsh/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.9 1997/09/27 19:28:40 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.10 1998/01/25 04:14:23 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -16,6 +16,11 @@ include ../../Makefile.global
1616

1717
CFLAGS+= -I$(TCL_INCDIR) -I$(TK_INCDIR) -I$(X11_INCDIR) -I$(SRCDIR)/interfaces/libpgtcl
1818

19+
ifdef KRBVERS
20+
LDFLAGS+= $(KRBLIBS)
21+
CFLAGS+= $(KRBFLAGS)
22+
endif
23+
1924
# try to find libpgtcl.a in either directory
2025
LIBPGTCL= -L$(SRCDIR)/interfaces/libpgtcl -L$(LIBDIR) -lpgtcl
2126
LIBPQ= -L$(LIBPQDIR) -L$(LIBDIR) -lpq

src/configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ case "$host_os" in
580580
sunos*) os=sunos4 ;;
581581
linux*) os=linux ;;
582582
bsdi*) os=bsdi ;;
583-
freebsd*|netbsd|openbsd*) os=bsd ;;
583+
freebsd*|netbsd*|openbsd*) os=bsd ;;
584584
dgux*) os=dgux;;
585585
aix*) os=aix ;;
586586
nextstep*) os=nextstep;;

src/configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ case "$host_os" in
1616
sunos*) os=sunos4 ;;
1717
linux*) os=linux ;;
1818
bsdi*) os=bsdi ;;
19-
freebsd*|netbsd|openbsd*) os=bsd ;;
19+
freebsd*|netbsd*|openbsd*) os=bsd ;;
2020
dgux*) os=dgux;;
2121
aix*) os=aix ;;
2222
nextstep*) os=nextstep;;

src/interfaces/Makefile

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.3 1997/10/30 04:38:30 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.4 1998/01/25 04:14:36 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -24,8 +24,7 @@ endif
2424
ifeq ($(USE_TCL), true)
2525
$(MAKE) -C libpgtcl $@
2626
endif
27-
2827
ifeq ($(USE_PERL), true)
29-
cd perl5 && perl Makefile.PL
30-
$(MAKE) -C perl5 $@
28+
cd perl5 && perl Makefile.PL
29+
$(MAKE) -C perl5 $@
3130
endif

0 commit comments

Comments
 (0)