1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Install the SQL command man pages into a section appropriate for each

system.  Some systems did not understand the 'l' section, and in general
it wasn't entirely appropriate.

On SCO OpenServer, the man pages won't be installed at all until someone
figures out their man system.
This commit is contained in:
Peter Eisentraut
2001-08-29 19:14:40 +00:00
parent 2c6b599c04
commit b1a38a4380
29 changed files with 117 additions and 73 deletions

View File

@ -1,5 +1,5 @@
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.135 2001/08/28 14:20:26 petere Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.136 2001/08/29 19:14:39 petere Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
@ -88,6 +88,7 @@ includedir_server = $(pkgincludedir)/server
includedir_internal = $(pkgincludedir)/internal
mandir := @mandir@
sqlmansect_dummy = l
docdir := @docdir@
ifeq "$(findstring pgsql, $(docdir))" ""

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.92 2001/08/23 23:06:38 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.93 2001/08/29 19:14:39 petere Exp $
*
* NOTES
* Outside modules can create a lock table and acquire/release
@ -65,8 +65,6 @@ static char *lock_mode_names[] =
"AccessExclusiveLock"
};
static char *DeadLockMessage = "Deadlock detected.\n\tSee the lock(l) manual page for a possible cause.";
#ifdef LOCK_DEBUG
@ -953,7 +951,7 @@ WaitOnLock(LOCKMETHOD lockmethod, LOCKMODE lockmode,
*/
LOCK_PRINT("WaitOnLock: aborting on lock", lock, lockmode);
SpinRelease(lockMethodTable->ctl->masterLock);
elog(ERROR, DeadLockMessage);
elog(ERROR, "deadlock detected");
/* not reached */
}

View File

@ -1196,7 +1196,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
/**
* What is the maximum number of columns in a table? From the
* create_table(l) manual page...
* CREATE TABLE reference page...
*
* <p>"The new class is created as a heap with no initial data. A
* class can have no more than 1600 attributes (realistically,

View File

@ -1196,7 +1196,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
/**
* What is the maximum number of columns in a table? From the
* create_table(l) manual page...
* CREATE TABLE reference page...
*
* <p>"The new class is created as a heap with no initial data. A
* class can have no more than 1600 attributes (realistically,

View File

@ -43,3 +43,5 @@ endif
%$(DLSUFFIX): %.o %$(EXPSUFF)
@echo Making shared library $@ from $*.o, $*$(EXPSUFF) and postgres.imp
$(CC) -Wl,-H512 -Wl,-bM:SRE -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP) -Wl,-bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) $(LIBS) $(LDFLAGS_SL)
sqlmansect = 7

View File

@ -11,3 +11,5 @@ CFLAGS_SL = -fpic -DPIC
%.so: %.o
ln -fs $(top_srcdir)/src/backend/postgres _APP_
$(CC) -nostart -Xlinker -soname=$@ -o $@ _APP_ $<
sqlmansect = 7

View File

@ -22,3 +22,5 @@ endif
%.so: %.o
$(CC) -shared -o $@ $<
sqlmansect = 7

View File

@ -6,3 +6,5 @@ CFLAGS_SL = -bundle -undefined suppress
%.so: %.o
$(CC) $(CFLAGS) $(CFLAGS_SL) -o $@ $<
sqlmansect = 7

View File

@ -4,3 +4,5 @@ CFLAGS_SL = -fpic
%.so: %.o
$(CC) -shared -o $@ $<
sqlmansect = 5

View File

@ -21,3 +21,5 @@ else
@rm -f $@
$(LD) -x -Bshareable -Bforcearchive -o $@ $@.pic
endif
sqlmansect = 7

View File

@ -52,3 +52,5 @@ endif
# shlib ... should go away, since this is not really enough knowledge)
%.sl: %.o
$(LD) -b -o $@ $<
sqlmansect = 5

View File

@ -16,3 +16,5 @@ ifneq ($(GCC), yes)
CFLAGS += -woff 1164,1171,1185,1195,1552
endif
LDFLAGS += -Wl,-woff,15 -Wl,-woff,84
sqlmansect = 5sql

View File

@ -8,3 +8,5 @@ CFLAGS_SL = -fpic
%.so: %.o
$(CC) -shared -o $@ $<
sqlmansect = 7

View File

@ -24,3 +24,5 @@ else
$(LD) -x -Bshareable -Bforcearchive \
-o $@ $@.pic
endif
sqlmansect = 7

View File

@ -22,3 +22,5 @@ else
$(LD) -x -Bshareable -Bforcearchive \
-o $@ $@.pic
endif
sqlmansect = 7

View File

@ -5,3 +5,5 @@ rpath = -rpath $(libdir)
%.so: %.o
$(LD) -shared -expect_unresolved '*' -o $@ $<
sqlmansect = 5

View File

@ -15,3 +15,5 @@ CFLAGS_SL =
override CXXFLAGS +=-I/usr/local/include/g++
override CFLAGS +=-I/usr/local/include
sqlmansect = 7

View File

@ -16,3 +16,4 @@ endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
sqlmansect = 7

View File

@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.6 2000/12/16 18:14:25 petere Exp $
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.7 2001/08/29 19:14:40 petere Exp $
AROPT = crs
@ -24,3 +24,5 @@ endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
sqlmansect = 5sql

View File

@ -15,3 +15,4 @@ endif
%.so: %.o
$(LD) -assert pure-text -Bdynamic -o $@ $<
sqlmansect = 7

View File

@ -10,3 +10,5 @@ CFLAGS_SL =
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
sqlmansect = 5

View File

@ -8,3 +8,5 @@ CFLAGS_SL = -G 0
%.so: %.c
$(CC) -c -G 0 $(CPPFLAGS) $(CFLAGS) -o $@ $<
sqlmansect = 7

View File

@ -6,4 +6,4 @@ CFLAGS_SL = -K PIC
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
INSTALL= /usr/ucb/install
sqlmansect = 5

View File

@ -19,3 +19,5 @@ endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<
sqlmansect = 5sql

View File

@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/src/makefiles/Attic/Makefile.win,v 1.13 2001/05/25 15:48:33 momjian Exp $
# $Header: /cvsroot/pgsql/src/makefiles/Attic/Makefile.win,v 1.14 2001/08/29 19:14:40 petere Exp $
LDFLAGS+= -g
DLLTOOL= dlltool
DLLWRAP= dllwrap
@ -33,3 +33,5 @@ override CPPFLAGS+= -DUSE_DL_IMPORT
endif
override javadir := '$(shell cygpath -w $(javadir))'
sqlmansect = 7