summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Collapse)Author
2005-01-26Use SHGetFolderPath instead of SHGetSpecialFolderPath to find theTom Lane
APPDATA directory on Windows. Magnus Hagander
2005-01-25Fixed segfault due to freeing a struct definition twice if it was a named ↵Michael Meskes
struct used in a typedef.
2005-01-18Update version stamps for 8.1 as listed in RELEASE_CHANGES.Bruce Momjian
2005-01-17Translation updatesPeter Eisentraut
2005-01-14Translation updatesPeter Eisentraut
2005-01-14Change Win32 client configuration files from *.txt to *.conf.Bruce Momjian
2005-01-13Translation updatesPeter Eisentraut
2005-01-12Add conditional inclusion of <com_err.h> to support old 'heimdal'Tom Lane
version of Kerberos. Per report from Reinhard Max.
2005-01-11interval_out failed to mention 'ago' for negative intervals in SQL andTom Lane
GERMAN datestyles. Ancient bug reported by Terry Lee Tucker.
2005-01-10Fixed segfault in adjust_informix due to missing varchar type.Michael Meskes
2005-01-10Comment out check for substitution of private key file on Windows,Tom Lane
since st_ino can't be trusted on that platform. Per report from T.J.
2005-01-10Un-break MSVC build, per Andrew Dunstan.Tom Lane
2005-01-09Translation updatesPeter Eisentraut
2005-01-08Consistently use geteuid() not getuid(); there were a few places deviatingTom Lane
from our long-established standard.
2005-01-06Minor mop-up for Windows home-directory stuff, per Magnus.Tom Lane
2005-01-06Instead of a bare recv() to read the server's response to an SSLTom Lane
request packet, use pqReadData(). This has the same effect since conn->ssl isn't set yet and we aren't expecting more than one byte. The advantage is that we will correctly detect loss-of-connection instead of going into an infinite loop. Per report from Hannu Krosing.
2005-01-06Adjust lookup of client-side profile files (.pgpass and so on) as perTom Lane
discussion on pgsql-hackers-win32 list. Documentation still needs to be tweaked --- I'm not sure how to refer to the APPDATA folder in user documentation.
2005-01-06Translation updatesDennis Bjorklund
2005-01-06Translation updatesPeter Eisentraut
2005-01-06Make the various places that determine the user's "home directory"Tom Lane
consistent. On Unix we now always consult getpwuid(); $HOME isn't used at all. On Windows the code currently consults $USERPROFILE, or $HOME if that's not defined, but I expect this will change as soon as the win32 hackers come to a consensus. Nothing done yet about changing the file names used underneath $USERPROFILE.
2005-01-04Clean up code in libpq that obtains user's home directory: make a singleTom Lane
subroutine that can hide platform dependencies. The WIN32 path is still a stub, but I await a fix from one of the win32 hackers. Also clean up unnecessary #ifdef WIN32 ugliness in a couple of places.
2005-01-01Adjust a few more copyright notices to match the format expected byTom Lane
the src/tools/copyright script.
2005-01-01Some more missed copyright notices. Many of these look like theyTom Lane
should have been caught by the src/tools/copyright script ... why weren't they?
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
2004-12-30Fixed segfault in connect when specifying no database name.Michael Meskes
2004-12-28Make libpq default to localhost connections on machines without Unix-domainTom Lane
sockets, rather than failing as it formerly did. Revert the thereby-obsoleted patch to make psql supply the localhost default.
2004-12-23Add missing ecpg prototype for newly added functions.Bruce Momjian
2004-12-23Added PGTYPEStimestamp_add_interval written by Dave Cramer.Michael Meskes
Fixed parsing of defines to make sure they used more than once.
2004-12-21Patch to make libpq.rc be a built-for-distribution file was a fewTom Lane
bricks shy of a load.
2004-12-20Remove direct inclusions of <com_err.h> as well as configure test forTom Lane
its presence. This amounts to desupporting Kerberos 5 releases 1.0.*, which is small loss, and simplifies use of our Kerberos code on platforms with Red-Hat-style include file layouts. Per gripe from John Gray and followup discussion.
2004-12-19Add Win32 version stamps that increment each day for proper SYSTEM32Bruce Momjian
DLL pginstaller installs.
2004-12-13New translationsPeter Eisentraut
2004-12-12Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-12-06Fixed bug in parsing of typedef'ed array sizes.Michael Meskes
Synced parser.
2004-12-03Fix compile breakage from SIGPIPE fix for threading.Bruce Momjian
2004-12-02Code review for recent libpq changes. Be more careful about errorTom Lane
handling in SIGPIPE processing; avoid unnecessary pollution of application link-symbol namespace; spell 'pointer to function' in the conventional way.
2004-12-02Rework libpq threaded SIGPIPE handling to avoid interference withBruce Momjian
calling applications. This is done by blocking sigpipe in the libpq thread and using sigpending/sigwait to possibily discard any sigpipe we generated.
2004-12-01Allow libpq to build on MS Visual Studio .NET 2003 on Windows XP.Bruce Momjian
2004-11-20Fix up makefile dependencies for pg_config_paths.h.Tom Lane
2004-11-20Make sure we produce a useful error message for the case where theTom Lane
postgresql.crt file simply isn't there, too.
2004-11-20Improve error reporting for SSL connection failures. Remove redundantTom Lane
free operations in client_cert_cb --- openssl will also attempt to free these structures, resulting in core dumps.
2004-11-17Miscellaneous Cygwin build fixes from Reini Urban.Tom Lane
2004-11-16Translation updatePeter Eisentraut
2004-11-13Not entirely sure when this broke, but libpq's VC++ build is currentlyBruce Momjian
lacking pqsignal which is now required. This was found and fixed for VC++ by Shachar Shemesh, I simply duplicated the fix for the Borland makefile (untested, as I don't have that compiler). Dave Page
2004-11-10List VALUE as a keyword.Michael Meskes
2004-11-09Get rid of perror(), substitute some better phrased error messages.Peter Eisentraut
malloc() doesn't set errno, so most uses were buggy anyway.
2004-11-09Translation updatesPeter Eisentraut