| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix const cast in get_progname(). | Bruce Momjian | 2006-02-01 | 1 | -2/+2 |
* | Set progname early in the postmaster/postgres binary, rather than doing | Bruce Momjian | 2006-02-01 | 1 | -17/+18 |
* | Fix make_relative_path() to support cases where target_path and bin_path | Tom Lane | 2005-12-23 | 1 | -18/+69 |
* | Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the | Tom Lane | 2005-01-26 | 1 | -3/+3 |
* | Un-break MSVC build, per Andrew Dunstan. | Tom Lane | 2005-01-10 | 1 | -1/+8 |
* | Minor mop-up for Windows home-directory stuff, per Magnus. | Tom Lane | 2005-01-06 | 1 | -1/+2 |
* | Adjust lookup of client-side profile files (.pgpass and so on) as per | Tom Lane | 2005-01-06 | 1 | -10/+11 |
* | Make the various places that determine the user's "home directory" | Tom Lane | 2005-01-06 | 1 | -11/+25 |
* | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
* | Removes duplicate slashes from the path in canonicalize_path(). It | Bruce Momjian | 2004-11-07 | 1 | -7/+27 |
* | Simplify relative-path logic, on the assumption that compiled-in paths | Tom Lane | 2004-11-06 | 1 | -163/+65 |
* | Fix sizeof(EXE) arithmetic, per Andrew Dunstan. | Tom Lane | 2004-11-06 | 1 | -3/+3 |
* | Code cleanup in path.c and exec.c. Handle Windows drive and network specs | Tom Lane | 2004-11-06 | 1 | -56/+130 |
* | Add comment about memory failure of get_progname exiting the postmaster: | Bruce Momjian | 2004-11-02 | 1 | -2/+2 |
* | Adjust use of sizeof(EXE). | Bruce Momjian | 2004-11-01 | 1 | -4/+4 |
* | Clarify coding of .exe patch | Bruce Momjian | 2004-11-01 | 1 | -4/+4 |
* | Canonicalize Win32 path coming in from pg_ctl -D, idea from Magnus. | Bruce Momjian | 2004-10-27 | 1 | -6/+11 |
* | On Windows, cause get_progname to strip any .EXE suffix. | Tom Lane | 2004-10-24 | 1 | -4/+27 |
* | Fix gratuitous weirdness in function prototype, per Kris Jurka. | Tom Lane | 2004-09-24 | 1 | -2/+2 |
* | Remove useless variable. | Tom Lane | 2004-09-02 | 1 | -7/+1 |
* | Add WAL logging for CREATE/DROP DATABASE and CREATE/DROP TABLESPACE. | Tom Lane | 2004-08-29 | 1 | -22/+34 |
* | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -56/+60 |
* | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
* | Add get_home_path() to use USERPROFILE on Win32 and HOME on Unix. | Bruce Momjian | 2004-08-18 | 1 | -1/+22 |
* | Fix core dumps, inability to count, etc associated with canonicalize_path | Tom Lane | 2004-08-13 | 1 | -4/+4 |
* | Cleanup Win32 COPY handling, and move archive examples to SGML. | Bruce Momjian | 2004-08-12 | 1 | -3/+12 |
* | Add make_native_path() because Win32 COPY is an internal CMD.EXE command | Bruce Momjian | 2004-08-12 | 1 | -1/+18 |
* | Path-mangling logic was failing to account for paths containing mentions | Tom Lane | 2004-08-09 | 1 | -5/+27 |
* | Create a C version of pg_config. | Bruce Momjian | 2004-08-01 | 1 | -3/+35 |
* | Add blank line to new canonicalize_path file, which handles "a b\" properly. | Bruce Momjian | 2004-07-12 | 1 | -1/+2 |
* | Put back canonicalization of PGDATA environment variable. | Bruce Momjian | 2004-07-12 | 1 | -8/+18 |
* | Use canonicalize_path for -D, GUC paths, and paths coming in from | Bruce Momjian | 2004-07-11 | 1 | -23/+34 |
* | Fix trim_trailing_separator() to not trim c:\ nor \\network\ on Win32. | Bruce Momjian | 2004-07-11 | 1 | -2/+21 |
* | Fix BSD-only coding in port.c (passing a local variable to putenv). | Tom Lane | 2004-07-10 | 1 | -12/+12 |
* | Use sizeof() rather than strlen() in array size. | Bruce Momjian | 2004-06-11 | 1 | -2/+2 |
* | Attached is a patch that takes care of the PATHSEP issue. I made a more | Bruce Momjian | 2004-06-10 | 1 | -17/+36 |
* | Change PGETC to PGSYSCONFDIR and PGLOCALE to PGLOCALEDIR, per Peter. | Bruce Momjian | 2004-06-08 | 1 | -6/+6 |
* | Add PGETC (for pg_service.conf) and PGLOCALE (for locale dir) | Bruce Momjian | 2004-06-03 | 1 | -7/+22 |
* | Move setlocale() outside of NLS-only defines. | Bruce Momjian | 2004-05-26 | 1 | -1/+3 |
* | Allow relative paths as long as the hardcoded path matches the bin path | Bruce Momjian | 2004-05-25 | 1 | -81/+67 |
* | Fix set_pglocale to properly pass my_exec_path to get_locale_path instead of ... | Bruce Momjian | 2004-05-25 | 1 | -2/+2 |
* | Skip settting LC_ALL in the backend. | Bruce Momjian | 2004-05-25 | 1 | -2/+5 |
* | Make the locale location relocatable. | Bruce Momjian | 2004-05-25 | 1 | -21/+80 |
* | Put path configuration information into a .h file instead of cluttering | Tom Lane | 2004-05-21 | 1 | -4/+7 |
* | Win32 can't have the same function coming from two library object files, | Bruce Momjian | 2004-05-19 | 1 | -19/+1 |
* | Clean up some relative path install issues with Claudio's help. | Bruce Momjian | 2004-05-18 | 1 | -2/+2 |
* | Reorganize code to allow path-relative installs. | Bruce Momjian | 2004-05-17 | 1 | -37/+241 |
* | Rename find_my_binary/find_other_binary to | Bruce Momjian | 2004-05-12 | 1 | -3/+3 |
* | As part of the work for making relocatable installs, I have re-factored | Bruce Momjian | 2004-05-11 | 1 | -1/+2 |
* | The win32 port backend will require the functionality provided by | Bruce Momjian | 2004-03-09 | 1 | -1/+27 |