mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
No complaints heard about the main branch, so I'm committing this
to REL6_4 as well... Use autoconf to determine whether system has POSIX signals, instead of relying on port's os.h to tell us. (Needed for HPUX where system major version is not enough info.) configure unsets USE_TK if X libraries not found. doc/Makefile uses gzcat or zcat as found by autoconf.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
#
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/doc/Makefile,v 1.11 1998/10/20 23:14:35 momjian Exp $
|
||||
# $Header: /cvsroot/pgsql/doc/Makefile,v 1.11.2.1 1998/12/05 23:08:55 tgl Exp $
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
@ -16,6 +16,7 @@ PGDOCS= $(POSTGRESDIR)/doc
|
||||
SRCDIR= ../src
|
||||
|
||||
TAR= tar
|
||||
GZCAT= zcat
|
||||
|
||||
# Pick up Makefile.global from the source area
|
||||
# This is the only resource from the code source area and is optional.
|
||||
@ -73,6 +74,6 @@ man::
|
||||
%: %.tar.gz
|
||||
rm -rf ./$@ $(PGDOCS)/$*
|
||||
if test ! -d $(PGDOCS)/$* ; then mkdir $(PGDOCS)/$* ; fi
|
||||
zcat $< | $(TAR) xf - -C $(PGDOCS)/$*
|
||||
$(GZCAT) $< | (cd $(PGDOCS)/$* ; $(TAR) xf - )
|
||||
# touch ./$*
|
||||
|
||||
|
Reference in New Issue
Block a user