summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Collapse)Author
2004-09-28Revert patch that removed BUFSIZ usage. The memory has to hold theBruce Momjian
structures plus pointers used by the structure.
2004-09-27Remove use of large BUFSIZ for buffers and use the proper struct sizes.Bruce Momjian
This greatly helps threaded libpq programs.
2004-09-27Add new macro as shorthand for MS VC and Borland C++:Bruce Momjian
+ #if defined(_MSC_VER) || defined(__BORLANDC__) + #define WIN32_CLIENT_ONLY + #endif
2004-09-27Translation updatesPeter Eisentraut
2004-09-27Synced parser.Michael Meskes
Removed Oracle transaction syntax to fix shift/reduce error.
2004-09-26Fix multiple breakages in our support for SSL certificates.Tom Lane
2004-09-26Here is a patch that adds the version info from libpq.rc to the DLLBruce Momjian
build in mingw. The MSVC build already did this, but it was not linked into the mingw one. This is not the same as the versioninfo patch that's in the queue. Please apply this one before beta-3 if at all possible. Magnus Hagander
2004-09-26Use <> not "" for include of pthread.h.Bruce Momjian
2004-09-23If we're going to print unrecognized result codes from SSL_get_errorTom Lane
in open_client_SSL, surely we should do it everywhere. Also make message formatting conform to style guide.
2004-09-23This patch logs the error code in the default case, so that the userBruce Momjian
stands a chance of looking it up. "Unrecognised error" is always disheartening. :-) Dominic Mitchell
2004-09-20Translation updatePeter Eisentraut
2004-09-20Translation updatesPeter Eisentraut
2004-09-20Translation updatesPeter Eisentraut
2004-09-20Translation updatesPeter Eisentraut
2004-09-13Translation updatesPeter Eisentraut
2004-09-09Translation updatesDennis Bjorklund
2004-09-09Some source files was not scanned for translatable strings.Dennis Bjorklund
2004-09-09Fix Cygwin defines to be consistent.Bruce Momjian
2004-09-09Make TZNAME_GLOBAL for reference to tzname global variable.Bruce Momjian
2004-09-08Use _timezone global on Cygwin instead of timezone.Bruce Momjian
2004-09-06Fixed segfault in Informix mode.Michael Meskes
2004-09-02Remove pg_config_paths.h from libpq *.mak builds so later MinGW buildsBruce Momjian
will succeed.
2004-09-01Realign libpq and psql for need for path.c under Win32 VC and BCC.Bruce Momjian
2004-09-01Back out Cygwin timezone change until we have a more global solution.Bruce Momjian
2004-09-01Cast _timezone to int from time_t for Cygwin.Bruce Momjian
2004-08-30Another pgindent run with lib typedefs added.Bruce Momjian
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-28Add missing semicolon; some bison versions warn of this.Tom Lane
2004-08-19Don't use get_home_path so libpq doesn't pull path.c into the library.Bruce Momjian
2004-08-18Clean up some random departures from project's standard declaration style.Tom Lane
2004-08-18Add get_home_path() to use USERPROFILE on Win32 and HOME on Unix.Bruce Momjian
2004-08-17Chain on to SIGPIPE handler rather than just do action on default.Bruce Momjian
Always create thread-specific variable.
2004-08-17Fix linking problem when enabling thread safety on Darwin: uninitializedTom Lane
global variables are problematic on this platform. Simplest solution seems to be to initialize pthread key variable to 0. Also, rename this variable and check_sigpipe_handler to something involving "pq" to avoid gratuitous pollution of application namespace.
2004-08-17Move io.h include higher in the file so it doesn't conflict withBruce Momjian
rename/unlink defined later. Problem exists on MS VC. Andrew Francis
2004-08-15Specify SA_NOCLDSTOP when enabling SIGCHLD, per suggestion fromTom Lane
Oliver Jowett.
2004-08-11Fix broken parsing of CREATE TABLE AS (looks like a mis-sync with mainTom Lane
parser).
2004-08-11Add PQserverVersion() to libpq to provide more-convenient access toTom Lane
the server version number. This commit also removes bogus DOS line endings from libpqddll.def. Greg Sabino Mullane
2004-08-10Translation updatesPeter Eisentraut
2004-08-10Translation updatesPeter Eisentraut
2004-08-09Stamp libpq.rc with 8.0 version.Bruce Momjian
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
and documentation to reference 8.0 instead of 7.5.
2004-08-04Fix syntax error by adding a space.Bruce Momjian
2004-08-02Translation updatesPeter Eisentraut
2004-08-01Translation updates (zh_TW converted to UTF-8)Peter Eisentraut
2004-07-31>OK, if you look at the last few commits to interfaces/libpq/win32.mak,Bruce Momjian
>you will see changes for pg_config_paths.h and for thread safety. Can >you look at those changes, merge them into bcc.mak. There might be >other changes in there you want to add to bcc.mak too. > > > OK, having no M$ diff, I attach files src\interfaces\libpq\bcc32.mak and src\interfaces\libpq\win32.h Steve Holdoway
2004-07-29Translation updatePeter Eisentraut
2004-07-26SQL defines are only used in SQL space in Informix mode.Michael Meskes
2004-07-20Synced parser and keyword list.Michael Meskes
Fixed handling of cyclic defines.
2004-07-13Cause libpq and ecpg libraries to be built as proper shared librariesTom Lane
(.dylib format) on Mac OS X, while not messing up loadable modules for the backend (which are the same kind of animal as a shared library on every other platform, but not here). Also get the naming convention to match OS X practice, viz libFOO.version.so not libFOO.so.version. In support of that last, refactor code in Makefile.shlib to make it easier to have platform-specific shlib naming conventions. This patch is loosely based on the Fink project's current postgresql.patch. Tested by yours truly on OS X 10.3.4; does anyone have 10.2.* to check it on?