1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

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:
Tom Lane
1998-11-29 05:30:25 +00:00
parent 92eacaf523
commit b10a719777
17 changed files with 435 additions and 359 deletions

View File

@ -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.12 1998/11/29 05:30:13 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 ./$*