Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update copyrights for 2013 | Bruce Momjian | 2013-01-01 |
| | | | | | Fully update git head, and update back branches in ./COPYRIGHT and legal.sgml files. | ||
* | Update copyright notices for year 2012. | Bruce Momjian | 2012-01-01 |
| | |||
* | Stamp copyrights for year 2011. | Bruce Momjian | 2011-01-01 |
| | |||
* | Remove optreset from src/port/ implementations of getopt and getopt_long. | Tom Lane | 2010-12-16 |
| | | | | | | | | | | We don't actually need optreset, because we can easily fix the code to ensure that it's cleanly restartable after having completed a scan over the argv array; which is the only case we need to restart in. Getting rid of it avoids a class of interactions with the system libraries and allows reversion of my change of yesterday in postmaster.c and postgres.c. Back-patch to 8.4. Before that the getopt code was a bit different anyway. | ||
* | Remove cvs keywords from all files. | Magnus Hagander | 2010-09-20 |
| | |||
* | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 |
| | |||
* | Remove a boatload of useless definitions of 'int optreset'. If we | Tom Lane | 2009-04-05 |
| | | | | | | are using our own ports of getopt or getopt_long, those will define the variable for themselves; and if not, we don't need these, because we never touch the variable anyway. | ||
* | Update copyright for 2009. | Bruce Momjian | 2009-01-01 |
| | |||
* | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 |
| | |||
* | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 |
| | | | | back-stamped for this. | ||
* | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 |
| | |||
* | Some more missed copyright notices. Many of these look like they | Tom Lane | 2005-01-01 |
| | | | | | should have been caught by the src/tools/copyright script ... why weren't they? | ||
* | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 |
| | |||
* | Another pgindent run with updated typedefs. | Bruce Momjian | 2003-08-08 |
| | |||
* | Don't assume that struct option is available just because we can find a | Tom Lane | 2003-08-07 |
| | | | | | | | getopt_long(). This is more or less the same problem as we saw earlier with getaddrinfo() and struct addrinfo, and for the same reason: random user-added libraries might contain the subroutine, but there's no guarantee we will find the matching header files. | ||
* | pgindent run. | Bruce Momjian | 2003-08-04 |
| | |||
* | Use our own version of getopt_long() if the OS doesn't have one. | Peter Eisentraut | 2003-01-06 |