Age | Commit message (Collapse) | Author |
|
From: Zeugswetter Andreas SARZ <Andreas.Zeugswetter@telecom.at>
|
|
HP-UX (all versions) requires shared libraries to have execute
permission, and really needs them to be exactly mode 555 for
performance reasons. The standard configure/install procedure
installs libpq.sl as mode 644, which DOES NOT WORK.
The attached patch modifies the makefiles to distinguish
INSTL_LIB_OPTS (install mode for ordinary libraries) from
INSTL_SHLIB_OPTS (mode for shared libs), and adds a test
to configure to set INSTL_SHLIB_OPTS="-m 555" when on HP-UX.
|
|
Ok, I have finally gotten all of the defines for Dec/Alpha and
Linux/Alpha sorted out as Marc asked. There is no longer any need for
'-Dalpha' or '-Dlinuxalpha' in either the Dec/Alpha or the Linux/Alpha
template files (./src/template/{alpha,linuxalpha}). I have replaced every
instance of 'alpha' or '__alpha__' with '__alpha', as that appears to be
the common symbol between C compilers on both operating systems (RH4.2 &
DecUnix 4.0b) for alpha.
|
|
And the next update. Now you can use only parts of a struct like this:
exec sql select a into :struct.string from foo;
|
|
|
|
1. Removes the unnecessary "#define AbcRegProcedure 123"'s from
pg_proc.h.
2. Changes those #defines to use the names already defined in
fmgr.h.
3. Forces the make of fmgr.h in backend/Makefile instead of having
it
made as a dependency in access/common/Makefile *hack*hack*hack*
4. Rearranged the #includes to a less helter-skelter arrangement,
also
changing <file.h> to "file.h" to signify a non-system header.
5. Removed "pg_proc.h" from files where its only purpose was for
the
#defines removed in item #1.
6. Added "fmgr.h" to each file changed for completeness sake.
Turns out that #6 was not necessary for some files because fmgr.h
was being included in a roundabout way SIX levels deep by the first
include.
"access/genam.h"
->"access/relscan.h"
->"utils/rel.h"
->"access/strat.h"
->"access/skey.h"
->"fmgr.h"
So adding fmgr.h really didn't add anything to the compile, hopefully
just made it clearer to the programmer.
S Darren.
|
|
|
|
Oliver.Elphick@lfix.co.uk
|
|
|
|
|
|
|
|
problems on non POSIX systems such as SunOS 4.1.x. -- Tatsuo Ishii
t-ishii@sra.co.jp -
|
|
|
|
|
|
|
|
+ Thu Apr 23 09:27:16 CEST 1998
+
+ - Also allow call in whenever statement with the same functionality
+ as do.
+
+ Thu Apr 23 12:29:28 CEST 1998
+
+ - Also rewrote variable declaration part. It is now possible to
+ declare more than one variable per line.
+ - Set version to 2.1.0
+
+ Fri Apr 24 13:50:15 CEST 1998
+
+ - Fixed some bugs.
+ - Set version to 2.1.1
|
|
use, if not stipulated via --with-template
|
|
|
|
Michael Meskes <meskes@topsystem.de>
|
|
|
|
Here's a fix for a tiny memory leak in PQsetdb/PQfinish.
(Analysis of a running program indicates there are several others, but
this is the only obvious one I saw in the code).
|
|
|
|
This fixes a problem in ResultSet.getDate() when the column is NULL
(reported by Vincent Partington <Vincent.Partington@nmg.nl>)
And fixes a problem with Field's (ResultSet.getObject() was proving to be
slow as it repetedly send queries for oid -> name mapping - fixed by
creating a cache. (reported by Mario Ellebrecht <ellebrec@nads.de>)
|
|
|
|
gram.c updated
scan.c updated
ecpg/Makefile added LDFLAGS
configure requires sfio for those systems with it installed...
|
|
This will force the aix compiler to insert trapping code to
check for division by zero for the 4.1 port.
|
|
documented in ./configure --help
|
|
Here is a pair of patches that (I hope) finish the configuration
issues with tcl/tk and make the recognition of the two packages
completely parallel in organization. This should make future changes
easier to maintain.
Hope to see this in 6.2.2.
|
|
Marc, I overlooked this file it should be included in the source. Oops
Also the binary file is only 1.2 meg not 2.5 meg. Oops again.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This one is based on an older PostODBC driver, rewritten and maintained by
InsightDist(?)
|
|
Fix for Solaris/cc problem
|
|
|
|
From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
|
|
|
|
|
|
variable name *blush* *grin*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
and TIMEZONE_MINUTE but don't introduce until v6.4.
Fix SET TIMEZONE LOCAL to pass null pointer
rather than older "default" string.
Fix handling of NULL pointer returns from FOREIGN KEY clauses
which are currently ignored.
Allow START as a table/column name.
|