1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

The check of class string in configure (line 1732) fails because this class

is in <string> and not in <string.h> on QNX4/egcs-2.91.60.
Probably this can be changed for all platforms. The test in line 1705 uses
<string> as well. Because I am not sure, I havn't this included into the
patch.

doc/Makefile has to be sligthly  modified as it has been done for
src/backend/Makefile due to a QNX4 problem (patch attached)

Furthermore src/test/regress/run_check.sh needs to be patched as it has been
done for regress.sh (patch attached). Please note that in the patch the
postmaster is started always with the -i option.

run_check.sh reports the test "limit" as failed, but in reallity it is OK.
regress.sh reports it as OK.

Andreas Kardos
This commit is contained in:
Bruce Momjian
2000-05-17 16:57:41 +00:00
parent a8020a78ec
commit 362a0f68d9
2 changed files with 15 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/doc/Makefile,v 1.14 1999/12/05 21:23:00 momjian Exp $
# $Header: /cvsroot/pgsql/doc/Makefile,v 1.15 2000/05/17 16:57:40 momjian Exp $
#
#----------------------------------------------------------------------------
@@ -42,7 +42,7 @@ TARGETS= $(MODULES:%=%.html)
.PHONY: beforeinstall install all clean distclean
beforeinstall::
if [ ! -d $(PGDOCS) ]; then mkdir $(PGDOCS); fi
-@if [ ! -d $(PGDOCS) ]; then mkdir $(PGDOCS); fi
install::
$(MAKE) all
@@ -57,7 +57,7 @@ distclean::
$(MAKE) clean
man::
if test ! -d $(POSTMANDIR) ; then mkdir $(POSTMANDIR) ; fi
-@if test ! -d $(POSTMANDIR) ; then mkdir $(POSTMANDIR) ; fi
$(GZCAT) man.tar.gz | (cd $(POSTMANDIR) ; $(TAR) xf - )
#