OSDN Git Service

pg-rex/syncrep.git
27 years agoprototype cleanup
Bruce Momjian [Sun, 10 Nov 1996 03:30:46 +0000 (03:30 +0000)]
prototype cleanup

27 years agoRecognize dependencies more reliably.
Bryan Henderson [Sun, 10 Nov 1996 03:13:59 +0000 (03:13 +0000)]
Recognize dependencies more reliably.

27 years agoAll external function definitions now have prototypes that are checked.
Bruce Momjian [Sun, 10 Nov 1996 03:06:38 +0000 (03:06 +0000)]
All external function definitions now have prototypes that are checked.

27 years agoQuiet compiler warnings.
Bryan Henderson [Sun, 10 Nov 1996 02:27:15 +0000 (02:27 +0000)]
Quiet compiler warnings.

27 years agoAdd #include <ctype.h> to quiet compiler about missing declaration of isspace().
Bryan Henderson [Sun, 10 Nov 1996 01:46:14 +0000 (01:46 +0000)]
Add #include <ctype.h> to quiet compiler about missing declaration of isspace().

27 years agoAdd #include <unistd.h> to quiet compiler warning about missing getopt() declaratoin.
Bryan Henderson [Sun, 10 Nov 1996 01:37:48 +0000 (01:37 +0000)]
Add #include <unistd.h> to quiet compiler warning about missing getopt() declaratoin.

27 years agoAdd #include <unistd.h> to quiet warning about missing getopt() declaration.
Bryan Henderson [Sun, 10 Nov 1996 01:35:39 +0000 (01:35 +0000)]
Add #include <unistd.h> to quiet warning about missing getopt() declaration.

27 years agoRemove #include <regex.h> so it compiles on systems with GNU regex library.
Bryan Henderson [Sun, 10 Nov 1996 01:20:44 +0000 (01:20 +0000)]
Remove #include <regex.h> so it compiles on systems with GNU regex library.

27 years agoAdd USE_POSIX_TIME, HAVE_TZSET for Linux so backend compiles.
Bryan Henderson [Sun, 10 Nov 1996 00:50:54 +0000 (00:50 +0000)]
Add USE_POSIX_TIME, HAVE_TZSET for Linux so backend compiles.

27 years agoMake it find inet_aton.h so backend compiles on Solaris.
Bryan Henderson [Sun, 10 Nov 1996 00:38:38 +0000 (00:38 +0000)]
Make it find inet_aton.h so backend compiles on Solaris.

27 years agoAdded in PQconnectdb() function
Marc G. Fournier [Sat, 9 Nov 1996 10:39:54 +0000 (10:39 +0000)]
Added in PQconnectdb() function

Submitted by: wieck@sapserv.debis.de (Jan Wieck)

27 years agovarious docs changes requested by Bryan
Marc G. Fournier [Sat, 9 Nov 1996 10:29:50 +0000 (10:29 +0000)]
various docs changes requested by Bryan

27 years agoMakefile cleanup after reorganization
Bruce Momjian [Sat, 9 Nov 1996 06:24:51 +0000 (06:24 +0000)]
Makefile cleanup after reorganization

27 years agoAdded new include file.
Bruce Momjian [Sat, 9 Nov 1996 05:48:28 +0000 (05:48 +0000)]
Added new include file.

27 years agoA few more sparc_solaris cleanups from keith parks
Marc G. Fournier [Sat, 9 Nov 1996 01:48:32 +0000 (01:48 +0000)]
A few more sparc_solaris cleanups from keith parks

27 years agoFix typo in file name found during install.
Bruce Momjian [Fri, 8 Nov 1996 21:40:11 +0000 (21:40 +0000)]
Fix typo in file name found during install.

27 years agoMore compile cleanups
Bruce Momjian [Fri, 8 Nov 1996 20:46:33 +0000 (20:46 +0000)]
More compile cleanups

27 years agoSomehow PORTNAME keeps getting changed to BSD44_derived :(
Marc G. Fournier [Fri, 8 Nov 1996 07:47:52 +0000 (07:47 +0000)]
Somehow PORTNAME keeps getting changed to BSD44_derived :(

27 years agoChange includes from "" to <>
Marc G. Fournier [Fri, 8 Nov 1996 06:43:28 +0000 (06:43 +0000)]
Change includes from "" to <>

27 years agoFix perbyte_cpu thing
Bryan Henderson [Fri, 8 Nov 1996 06:24:58 +0000 (06:24 +0000)]
Fix perbyte_cpu thing

27 years agoCompile and warning cleanup
Bruce Momjian [Fri, 8 Nov 1996 06:02:30 +0000 (06:02 +0000)]
Compile and warning cleanup

27 years agoquick doc cleanup for libpgtcl from D'Arcy
Marc G. Fournier [Fri, 8 Nov 1996 01:10:15 +0000 (01:10 +0000)]
quick doc cleanup for libpgtcl from D'Arcy

27 years agoSecondly, small problem when trying to create a MAX/MIN aggregate in 1.09.
Marc G. Fournier [Fri, 8 Nov 1996 01:08:37 +0000 (01:08 +0000)]
Secondly, small problem when trying to create a MAX/MIN aggregate in 1.09.

>From the create_aggregate man page...

"The arguments to state-transition-function-1 must be
(stype1,basetype), and its return value must be stype1."

create aggregate MIN (sfunc1 = int2smaller,
                      basetype = int2,
                      stype1 = int2);

will fail becase int2smaller and int2larger are in pg_proc
as returning an int4.  Can't happen since both args have to
be int2.

From: Darren King <aixssd!ceodev!darrenk@abs.net>

27 years agoAnother patch to quiet the compiler from D'Arcy
Marc G. Fournier [Fri, 8 Nov 1996 00:59:10 +0000 (00:59 +0000)]
Another patch to quiet the compiler from D'Arcy

27 years agoThere is a problem in the Makefile of libpgtcl on linux (and maybe also on
Marc G. Fournier [Fri, 8 Nov 1996 00:58:07 +0000 (00:58 +0000)]
There is a problem in the Makefile of libpgtcl on linux (and maybe also on
other platforms).  If I do the standard make + make install the shared library
is not linked with the the libpq library and when I try to load it in the
standard Tcl or Tk shell I get a lot of unresolved symbols.  The bug doesn't
affect pgtclsh because it is linked also with libpq. The problem exists only
when using the dynamic load feature of Tcl7.5.

From: Massimo Dal Zotto <dz@cs.unitn.it>

27 years agoAdd some missing includes
Marc G. Fournier [Fri, 8 Nov 1996 00:56:17 +0000 (00:56 +0000)]
Add some missing includes

From: Randy Terbush <randy@zyzzyva.com>

27 years agoD'Arcy's recent cleanups
Marc G. Fournier [Fri, 8 Nov 1996 00:46:14 +0000 (00:46 +0000)]
D'Arcy's recent cleanups

27 years agoCleanup initdb for 1.*.
Bruce Momjian [Thu, 7 Nov 1996 15:24:27 +0000 (15:24 +0000)]
Cleanup initdb for 1.*.

27 years agoTry to fix mode.
Bryan Henderson [Thu, 7 Nov 1996 05:15:31 +0000 (05:15 +0000)]
Try to fix mode.

27 years agoTry to fix mode.
Bryan Henderson [Thu, 7 Nov 1996 05:10:17 +0000 (05:10 +0000)]
Try to fix mode.

27 years agoUpdate initdb instructions for a 1.* database.
Bruce Momjian [Wed, 6 Nov 1996 22:34:18 +0000 (22:34 +0000)]
Update initdb instructions for a 1.* database.

27 years agoChange instructions for 1.*.
Bruce Momjian [Wed, 6 Nov 1996 22:32:18 +0000 (22:32 +0000)]
Change instructions for 1.*.

27 years agoAnother directory that compiles with no errors, and few warnings
Marc G. Fournier [Wed, 6 Nov 1996 10:32:10 +0000 (10:32 +0000)]
Another directory that compiles with no errors, and few warnings

27 years agoOkay...this pretty much cleans out the include files.
Marc G. Fournier [Wed, 6 Nov 1996 10:31:02 +0000 (10:31 +0000)]
Okay...this pretty much cleans out the include files.

I'm able to get through a 'make' of the backend with no errors except
the occasional 'might not be initialized error', which is nothing major,
just annoying.

Have a few patches from D'Arcy to incorporate, but am waiting until I can
get a clean compile first, which I'm hoping to have before bed, or sometime
tomorrow.

27 years agoMake sure that #include <postgres.h> is included in fmgrtab.c
Marc G. Fournier [Wed, 6 Nov 1996 10:22:13 +0000 (10:22 +0000)]
Make sure that #include <postgres.h> is included in fmgrtab.c

27 years agoAdd prototype for: int DebugFileOpen()
Marc G. Fournier [Wed, 6 Nov 1996 10:15:25 +0000 (10:15 +0000)]
Add prototype for: int DebugFileOpen()

27 years ago...same...
Marc G. Fournier [Wed, 6 Nov 1996 09:56:47 +0000 (09:56 +0000)]
...same...

27 years agoMore files cleaned out
Marc G. Fournier [Wed, 6 Nov 1996 09:29:26 +0000 (09:29 +0000)]
More files cleaned out

27 years agoOne by one, file by file
Marc G. Fournier [Wed, 6 Nov 1996 09:27:29 +0000 (09:27 +0000)]
One by one, file by file

27 years agoAnother
Marc G. Fournier [Wed, 6 Nov 1996 09:24:57 +0000 (09:24 +0000)]
Another

27 years agoGetting there, one by one...
Marc G. Fournier [Wed, 6 Nov 1996 09:21:42 +0000 (09:21 +0000)]
Getting there, one by one...

27 years agoAnd another
Marc G. Fournier [Wed, 6 Nov 1996 09:19:16 +0000 (09:19 +0000)]
And another

27 years agoanother one bites the dust
Marc G. Fournier [Wed, 6 Nov 1996 09:17:31 +0000 (09:17 +0000)]
another one bites the dust

27 years agoJust a couple of small mods
Marc G. Fournier [Wed, 6 Nov 1996 08:54:17 +0000 (08:54 +0000)]
Just a couple of small mods

27 years agoanother gone
Marc G. Fournier [Wed, 6 Nov 1996 08:52:04 +0000 (08:52 +0000)]
another gone

27 years agoI'm getting there, slowly :)
Marc G. Fournier [Wed, 6 Nov 1996 08:48:33 +0000 (08:48 +0000)]
I'm getting there, slowly :)

27 years agoSlowly getting faster to make sure it compiles...still needs cleaning
Marc G. Fournier [Wed, 6 Nov 1996 08:27:16 +0000 (08:27 +0000)]
Slowly getting faster to make sure it compiles...still needs cleaning
up, but one thing at a time :)

27 years agoClean it up so that it compiles
Marc G. Fournier [Wed, 6 Nov 1996 08:21:43 +0000 (08:21 +0000)]
Clean it up so that it compiles

27 years agoAnother one cleaned up
Marc G. Fournier [Wed, 6 Nov 1996 08:07:45 +0000 (08:07 +0000)]
Another one cleaned up

27 years agoOops, two includes unrequired
Marc G. Fournier [Wed, 6 Nov 1996 08:05:02 +0000 (08:05 +0000)]
Oops, two includes unrequired

27 years agoAnother one bite sthe dust
Marc G. Fournier [Wed, 6 Nov 1996 08:02:40 +0000 (08:02 +0000)]
Another one bite sthe dust

27 years agoanother include cleaned out
Marc G. Fournier [Wed, 6 Nov 1996 07:50:12 +0000 (07:50 +0000)]
another include cleaned out

27 years agoFurther include file cleanups
Marc G. Fournier [Wed, 6 Nov 1996 07:44:18 +0000 (07:44 +0000)]
Further include file cleanups

27 years agoAnother directory cleaned up
Marc G. Fournier [Wed, 6 Nov 1996 07:31:26 +0000 (07:31 +0000)]
Another directory cleaned up

27 years agoAnother one bites the dust
Marc G. Fournier [Wed, 6 Nov 1996 07:05:18 +0000 (07:05 +0000)]
Another one bites the dust

27 years agoSome compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>
Marc G. Fournier [Wed, 6 Nov 1996 06:52:23 +0000 (06:52 +0000)]
Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>

27 years agoMakes it compile...still needs work
Marc G. Fournier [Tue, 5 Nov 1996 11:57:55 +0000 (11:57 +0000)]
Makes it compile...still needs work

27 years agoanother one quickly done up
Marc G. Fournier [Tue, 5 Nov 1996 11:29:45 +0000 (11:29 +0000)]
another one quickly done up

27 years agoclean this one
Marc G. Fournier [Tue, 5 Nov 1996 11:23:43 +0000 (11:23 +0000)]
clean this one

27 years agoMissed a file...
Marc G. Fournier [Tue, 5 Nov 1996 11:17:47 +0000 (11:17 +0000)]
Missed a file...

access now compile with -Wall -Werror

27 years agoThere, that cleans *that* out
Marc G. Fournier [Tue, 5 Nov 1996 11:12:33 +0000 (11:12 +0000)]
There, that cleans *that* out

27 years agoOne more to go
Marc G. Fournier [Tue, 5 Nov 1996 10:54:20 +0000 (10:54 +0000)]
One more to go

27 years agothese ones have their dependencies cleaned up
Marc G. Fournier [Tue, 5 Nov 1996 10:37:16 +0000 (10:37 +0000)]
these ones have their dependencies cleaned up

27 years agoAlmost done access...
Marc G. Fournier [Tue, 5 Nov 1996 10:35:38 +0000 (10:35 +0000)]
Almost done access...

27 years agoMore cleanups
Marc G. Fournier [Tue, 5 Nov 1996 10:02:06 +0000 (10:02 +0000)]
More cleanups

27 years agoMore cleanups
Marc G. Fournier [Tue, 5 Nov 1996 09:53:03 +0000 (09:53 +0000)]
More cleanups

27 years agoanother directory cleaned of extraneous #includes
Marc G. Fournier [Tue, 5 Nov 1996 09:40:25 +0000 (09:40 +0000)]
another directory cleaned of extraneous #includes

makefile fixed for fmgr.h

27 years agoMore cleaned out #include files
Marc G. Fournier [Tue, 5 Nov 1996 08:19:01 +0000 (08:19 +0000)]
More cleaned out #include files

Makefile fixed for fmgr.h

27 years agoAnother run through.
Marc G. Fournier [Tue, 5 Nov 1996 08:18:44 +0000 (08:18 +0000)]
Another run through.

This gets us a clean compile of 'common' and 'gist' with *clean* #include
files

27 years agoRe-add -I../.. for fmgr.h
Marc G. Fournier [Tue, 5 Nov 1996 07:42:46 +0000 (07:42 +0000)]
Re-add -I../.. for fmgr.h

Change #include "" to #include <>

Remove a few unused #includes

Make sure it compiles with -Wall -Werror

27 years agoAnd double check changes
Marc G. Fournier [Tue, 5 Nov 1996 07:41:13 +0000 (07:41 +0000)]
And double check changes

27 years agoMake sure all changes commited
Marc G. Fournier [Tue, 5 Nov 1996 07:38:17 +0000 (07:38 +0000)]
Make sure all changes commited

27 years agoAnother
Marc G. Fournier [Tue, 5 Nov 1996 07:24:03 +0000 (07:24 +0000)]
Another

27 years agoAnd another one
Marc G. Fournier [Tue, 5 Nov 1996 07:22:50 +0000 (07:22 +0000)]
And another one

27 years agoAnother one bits the dust...
Marc G. Fournier [Tue, 5 Nov 1996 07:20:09 +0000 (07:20 +0000)]
Another one bits the dust...

27 years agoAnd another...
Marc G. Fournier [Tue, 5 Nov 1996 07:18:05 +0000 (07:18 +0000)]
And another...

27 years agoAnd another..
Marc G. Fournier [Tue, 5 Nov 1996 07:15:58 +0000 (07:15 +0000)]
And another..

27 years agoAnother one cleaned out
Marc G. Fournier [Tue, 5 Nov 1996 07:07:22 +0000 (07:07 +0000)]
Another one cleaned out

27 years agoAnother directory totally cleaned out
Marc G. Fournier [Tue, 5 Nov 1996 06:11:08 +0000 (06:11 +0000)]
Another directory totally cleaned out

27 years agoFix c.h for sparc_solaris
Marc G. Fournier [Tue, 5 Nov 1996 05:28:20 +0000 (05:28 +0000)]
Fix c.h for sparc_solaris

Pointed out by Keith Parks

27 years agoClean up a few of the #include files
Marc G. Fournier [Tue, 5 Nov 1996 05:26:32 +0000 (05:26 +0000)]
Clean up a few of the #include files

27 years agoAdded missing #includes pointed out by Keith Parks
Marc G. Fournier [Tue, 5 Nov 1996 05:25:44 +0000 (05:25 +0000)]
Added missing #includes pointed out by Keith Parks

27 years agoBring in minor changes from Andrew
Marc G. Fournier [Tue, 5 Nov 1996 05:17:28 +0000 (05:17 +0000)]
Bring in minor changes from Andrew

27 years agoMake sure all the cleaned includes are commited
Marc G. Fournier [Mon, 4 Nov 1996 12:12:52 +0000 (12:12 +0000)]
Make sure all the cleaned includes are commited

27 years agoMake sure all the cleaned up includes are commited
Marc G. Fournier [Mon, 4 Nov 1996 12:11:44 +0000 (12:11 +0000)]
Make sure all the cleaned up includes are commited

27 years agoAnother one completely cleaned up
Marc G. Fournier [Mon, 4 Nov 1996 12:07:05 +0000 (12:07 +0000)]
Another one completely cleaned up

27 years agofinally, this directory is (should be!) totally clean
Marc G. Fournier [Mon, 4 Nov 1996 11:51:27 +0000 (11:51 +0000)]
finally, this directory is (should be!) totally clean

27 years agoAdd frontend \copy command.
Bryan Henderson [Mon, 4 Nov 1996 09:17:55 +0000 (09:17 +0000)]
Add frontend \copy command.

27 years agoanother pass through.
Marc G. Fournier [Mon, 4 Nov 1996 08:53:07 +0000 (08:53 +0000)]
another pass through.

Note.  all include files that have been hit so far have had extraneous
       include files cleaned out and are reduced to...the lowest common
       "include file", based on 'cc -Wall -I. test.c', where test.c is:

#include "postgres.h"
#include "<top of branches>" (ie. top of branches this time was utils/fcache2.h)

27 years agoMore cleanups (this one will most likely break under Win32, if anyone is
Marc G. Fournier [Mon, 4 Nov 1996 08:14:05 +0000 (08:14 +0000)]
More cleanups (this one will most likely break under Win32, if anyone is
working on it)

27 years agoNext, based on utils/catcache.h
Marc G. Fournier [Mon, 4 Nov 1996 07:59:39 +0000 (07:59 +0000)]
Next, based on utils/catcache.h

27 years agoAnother series started from utils/builtins.h
Marc G. Fournier [Mon, 4 Nov 1996 07:46:06 +0000 (07:46 +0000)]
Another series started from utils/builtins.h

27 years ago-Wall based cleanup of include files, based from acl.h, and everything
Marc G. Fournier [Mon, 4 Nov 1996 07:18:46 +0000 (07:18 +0000)]
-Wall based cleanup of include files, based from acl.h, and everything
that it depends on

27 years agoinclude utils/palloc.h as a default include, as its used more often then
Marc G. Fournier [Mon, 4 Nov 1996 06:35:36 +0000 (06:35 +0000)]
include utils/palloc.h as a default include, as its used more often then
not

27 years agoAdd ability to deal with the fmgr.h dependency.
Bryan Henderson [Mon, 4 Nov 1996 06:32:59 +0000 (06:32 +0000)]
Add ability to deal with the fmgr.h dependency.

27 years agoRename CDEBUG to COPT
Bruce Momjian [Mon, 4 Nov 1996 05:15:07 +0000 (05:15 +0000)]
Rename CDEBUG to COPT

27 years agoRemove AMERICAN STYLE. Not used.
Bruce Momjian [Mon, 4 Nov 1996 05:02:44 +0000 (05:02 +0000)]
Remove AMERICAN STYLE.  Not used.

27 years agoRemove optimization-specific stuff from OS sections. Use CDEBUG.
Bruce Momjian [Mon, 4 Nov 1996 05:01:47 +0000 (05:01 +0000)]
Remove optimization-specific stuff from OS sections.  Use CDEBUG.

27 years agoRemove OPENLINK define
Bruce Momjian [Mon, 4 Nov 1996 04:53:51 +0000 (04:53 +0000)]
Remove OPENLINK define

27 years agoRemove NULL_PATCH define
Bruce Momjian [Mon, 4 Nov 1996 04:35:48 +0000 (04:35 +0000)]
Remove NULL_PATCH define