- 07 May, 2005 1 commit
-
-
Neil Conway authored
interaction between ld, readline, termcap, and psql. The symptom is psql failing with this error on startup: symbol lookup error: /usr/lib64/libreadline.so.4: undefined symbol: BC I'm still trying to find the best way to solve this, but in the mean time I'm reverting the patch in order to unbreak FC3.
-
- 05 May, 2005 2 commits
-
-
Bruce Momjian authored
understands arg control, so we don't need our own. In fact, it also uses macros that conflict with ours, so we _can't_ use our own.
-
Neil Conway authored
executable against the maximal set of libraries it might need. So for example, if one executable requires `libreadline', all executables are linked against it. The easiest fix is to make use of GNU ld's --as-needed flag, which ignores linker arguments that are not actually needed by the specified object files. The attached patch modifies configure to check for this flag (when using GNU ld), and if ld supports it, adds the flag to LDFLAGS (we need to do the check since only relatively recent versions of GNU ld support this capability). Currently only GNU ld is supported; I'm not aware of any other linkers that support this functionality.
-
- 25 Mar, 2005 1 commit
-
-
Tom Lane authored
should work on Windows now. Also, rename set_noblock to pg_set_noblock; since it is included in libpq, the former name polluted application namespace.
-
- 11 Mar, 2005 1 commit
-
-
Bruce Momjian authored
implementation doesn't export out via libpq and get used by a user application.
-
- 02 Mar, 2005 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 28 Feb, 2005 2 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
its output can be used to select the proper printf outputs.
-
- 24 Feb, 2005 1 commit
-
-
Tom Lane authored
verified that AC_TRY_RUN works.
-
- 22 Feb, 2005 1 commit
-
-
Bruce Momjian authored
+ # Determine if printf supports %1$ argument selection, e.g. %5$ selects + # the fifth argument after the printf print string. + # This is not in the C99 standard, but in the Single Unix Specification (SUS). + # It is used in our langauge translation strings. Nicolai Tufar with configure changes by Bruce.
-
- 18 Jan, 2005 1 commit
-
-
Bruce Momjian authored
-
- 17 Jan, 2005 1 commit
-
-
PostgreSQL Daemon authored
its that time ... tag it for release
-
- 11 Jan, 2005 1 commit
-
-
PostgreSQL Daemon authored
up release to rc5
-
- 07 Jan, 2005 1 commit
-
-
PostgreSQL Daemon authored
upgrade tags to rc4
-
- 01 Jan, 2005 1 commit
-
-
Tom Lane authored
the src/tools/copyright script.
-
- 31 Dec, 2004 1 commit
-
-
PostgreSQL Daemon authored
Tag appropriate files for rc3 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 ...
-
- 21 Dec, 2004 1 commit
-
-
PostgreSQL Daemon authored
tag files for rc2
-
- 20 Dec, 2004 1 commit
-
-
Tom Lane authored
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.
-
- 16 Dec, 2004 1 commit
-
-
Tom Lane authored
gripe from John Gray. Also fix thinko in pltcl Makefile: if a special Tcl include directory is specified, that ought to be searched first.
-
- 03 Dec, 2004 1 commit
-
-
PostgreSQL Daemon authored
tag configure for rc1 ..
-
- 02 Dec, 2004 2 commits
-
-
Tom Lane authored
very good practice IMHO, but apparently some people think so.
-
Bruce Momjian authored
calling applications. This is done by blocking sigpipe in the libpq thread and using sigpending/sigwait to possibily discard any sigpipe we generated.
-
- 30 Nov, 2004 1 commit
-
-
Tom Lane authored
reliably (ie, regardless of which libraries they depend on). Also make sure that we don't select headers that obviously belong to the wrong one of the two libraries. This was discussed back around 4-Sep but seems to have slipped through the cracks. The header selection could be checked more closely, perhaps, but let's see if this is good enough.
-
- 22 Nov, 2004 1 commit
-
-
PostgreSQL Daemon authored
update us to beta5
-
- 06 Nov, 2004 1 commit
-
-
Tom Lane authored
actual executable location. This allows people to continue to use setups where, eg, postmaster is symlinked from a convenient place. Per gripe from Josh Berkus.
-
- 02 Nov, 2004 1 commit
-
-
Bruce Momjian authored
Kris Jurka
-
- 25 Oct, 2004 1 commit
-
-
PostgreSQL Daemon authored
make sure we tag configure.in as beta4 as well ...
-
- 20 Oct, 2004 1 commit
-
-
Neil Conway authored
-O2 -Wall -Wmissing-prototypes -Wpointer-arith Check whether the version of GCC we are using supports any of: -Wdeclaration-after-statement -Wendif-labels -Wold-style-definition And add the supported flags to CFLAGS.
-
- 15 Oct, 2004 1 commit
-
-
Bruce Momjian authored
> > ./configure LDFLAGS=-static-libgcc LDFLAGS_SL=-static-libgcc > > to produce binaries that do not depend on libgcc_s.so at all. Oliver Jowett
-
- 06 Oct, 2004 1 commit
-
-
Bruce Momjian authored
* Links with -leay32 and -lssleay32 instead of crypto and ssl. On win32, "crypto and ssl" is only used for static linking. * Initializes SSL in the backend and not just in the postmaster. We cannot pass the SSL context from the postmaster through the parameter file, because it contains function pointers. * Split one error check in be-secure.c. Previously we could not tell which of three calls actually failed. The previous code also returned incorrect error messages if SSL_accept() failed - that function needs to use SSL_get_error() on the return value, can't just use the error queue. * Since the win32 implementation uses non-blocking sockets "behind the scenes" in order to deliver signals correctly, implements a version of SSL_accept() that can handle this. Also, add a wait function in case SSL_read or SSL_write() needs more data. Magnus Hagander
-
- 01 Oct, 2004 1 commit
-
-
Neil Conway authored
semi-related SGML cleanup. Original patch from ljb220@mindspring.com, additional cleanup by Neil Conway.
-
- 27 Sep, 2004 1 commit
-
-
PostgreSQL Daemon authored
update for beta3, and update Copyright date to 2004
-
- 17 Sep, 2004 1 commit
-
-
Peter Eisentraut authored
like Linux; we just need to recognize the system types.
-
- 10 Sep, 2004 1 commit
-
-
Bruce Momjian authored
-
- 02 Sep, 2004 1 commit
-
-
Tom Lane authored
hardwiring IFS=: when searching paths.
-
- 31 Aug, 2004 1 commit
-
-
PostgreSQL Daemon authored
tag configure beta2
-
- 08 Aug, 2004 2 commits
-
-
PostgreSQL Daemon authored
-
Bruce Momjian authored
-
- 04 Aug, 2004 1 commit
-
-
Tom Lane authored
and documentation to reference 8.0 instead of 7.5.
-