- 06 Dec, 2005 3 commits
-
-
Bruce Momjian authored
Backpatch to 8.1.X.
-
Bruce Momjian authored
Win32. Backpatch to 8.1.X.
-
Tom Lane authored
on libintl which may or may not provide what we need. Make a few marginal cleanups to ensure this works. Andrew Dunstan and Tom Lane.
-
- 04 Dec, 2005 1 commit
-
-
Bruce Momjian authored
--with-libedit-preferred prefer BSD Libedit over GNU Readline
-
- 05 Nov, 2005 2 commits
-
-
Tom Lane authored
-
PostgreSQL Daemon authored
Tag everything for 8.1.0 ... Finally, a relesae on scheduale!!
-
- 30 Oct, 2005 1 commit
-
-
PostgreSQL Daemon authored
tag it for rc1
-
- 22 Oct, 2005 1 commit
-
-
PostgreSQL Daemon authored
update configure and bugtemplate for beta 4 ...
-
- 11 Oct, 2005 1 commit
-
-
PostgreSQL Daemon authored
update to beta3 before tagging ...
-
- 05 Oct, 2005 1 commit
-
-
Tom Lane authored
-Wold-style-definition, per recent discussion.
-
- 16 Sep, 2005 1 commit
-
-
PostgreSQL Daemon authored
tag it all beta2 ...
-
- 25 Aug, 2005 1 commit
-
-
Tom Lane authored
on Windows is now a feature, not a bug.
-
- 24 Aug, 2005 1 commit
-
-
PostgreSQL Daemon authored
fix up a few references to 8.1devel -> 8.1beta1
-
- 23 Aug, 2005 3 commits
-
-
Bruce Momjian authored
Windows. The test itself is bypassed in configure as discussed, and libpq has been updated appropriately to allow it to build in thread-safe mode. Dave Page
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 20 Aug, 2005 1 commit
-
-
Tom Lane authored
to 'Size' (that is, size_t), and install overflow detection checks in it. This allows us to remove the former arbitrary restrictions on NBuffers etc. It won't make any difference in a 32-bit machine, but in a 64-bit machine you could theoretically have terabytes of shared buffers. (How efficiently we could manage 'em remains to be seen.) Similarly, num_temp_buffers, work_mem, and maintenance_work_mem can be set above 2Gb on a 64-bit machine. Original patch from Koichi Suzuki, additional work by moi.
-
- 17 Aug, 2005 1 commit
-
-
Tom Lane authored
-
- 02 Aug, 2005 1 commit
-
-
Tom Lane authored
of special case for Windows port. Put a PG_TRY around most of createdb() to ensure that we remove copied subdirectories on failure, even if the failure happens while creating the pg_database row. (I think this explains Oliver Siegmar's recent report.) Having done that, there's no need for the fragile assumption that copydir() mustn't ereport(ERROR), so simplify its API. Eliminate the old code that used system("cp ...") to copy subdirectories, in favor of using copydir() on all platforms. This not only should allow much better error reporting, but allows us to fsync the created files before trusting that the copy has succeeded.
-
- 06 Jul, 2005 1 commit
-
-
Bruce Momjian authored
problems: --------------------------------------------------------------------------- Support cross compilation by compiling "zic" with a native compiler. This relies on the output of zic being platform independent, but that is currently the case.
-
- 05 Jul, 2005 1 commit
-
-
Tom Lane authored
is used in the toplevel configure. Per Marko Kreen.
-
- 03 Jul, 2005 1 commit
-
-
Peter Eisentraut authored
relies on the output of zic being platform independent, but that is currently the case.
-
- 01 Jul, 2005 1 commit
-
-
Peter Eisentraut authored
-
- 27 Jun, 2005 1 commit
-
-
Neil Conway authored
some security issues, and upstream has declared it "dead". Patch from Magnus Hagander, minor editorialization from Neil Conway.
-
- 04 Jun, 2005 1 commit
-
-
Bruce Momjian authored
Allow kerberos name and username case sensitivity to be specified from postgresql.conf. --------------------------------------------------------------------------- Here's an updated version of the patch, with the following changes: 1) No longer uses "service name" as "application version". It's instead hardcoded as "postgres". It could be argued that this part should be backpatched to 8.0, but it doesn't make a big difference until you can start changing it with GUC / connection parameters. This change only affects kerberos 5, not 4. 2) Now downcases kerberos usernames when the client is running on win32. 3) Adds guc option for "krb_caseins_users" to make the server ignore case mismatch which is required by some KDCs such as Active Directory. Off by default, per discussion with Tom. This change only affects kerberos 5, not 4. 4) Updated so it doesn't conflict with the rendevouz/bonjour patch already in ;-) Magnus Hagander
-
- 15 May, 2005 1 commit
-
-
Bruce Momjian authored
-
- 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
-