summaryrefslogtreecommitdiff
path: root/src/tools
AgeCommit message (Collapse)Author
2006-07-19Add WIN32 compile suggestion to pginclude README.Bruce Momjian
2006-07-18Add pginclude testing ideas.Bruce Momjian
2006-07-17Mention dependency problems caused by pgrminclude on include files.Bruce Momjian
2006-07-15Create a tool to catch #include omissions that might not result in anyTom Lane
compiler warning, specifically #ifdef or #if defined tests on symbols that are defined in a file not included. The results are a bit noisy and require care to interpret, but it's a lot better than no tool at all.
2006-07-14Have find_static skip main() functions.Bruce Momjian
2006-07-14Move CFLAGS for pginclude to the end of the command line.Bruce Momjian
2006-07-13Skip stripping postgres_fe.h include file.Bruce Momjian
2006-07-13Improve pginclude tools to process include file usage by other include files.Bruce Momjian
2006-07-12Fix pgrminclude to work for stripping include files.Bruce Momjian
2006-07-11Apply entab fix from Marko Kreen for these problems:Alvaro Herrera
- halt.c did not include stdlib.h, thus missed exit() prototype - Makefile ignores BINDIR for install. - Makefile calls install with user/group args, thus failing for regular user. While trying it I noticed that the Makefile does not support VPATH builds ...
2006-07-11Improve pginclude tests.Bruce Momjian
2006-07-11Improve pginclude compile flags.Bruce Momjian
2006-07-11Update pginclude documentation.Bruce Momjian
2006-07-11Have pgrminclude process include files too.Bruce Momjian
2006-07-11Add $CFLAGS support to pgrminclude.Bruce Momjian
2006-07-11Move pgrminclude debug code to be more effective.Bruce Momjian
2006-07-11Improve shell script wrapping.Bruce Momjian
2006-07-11Add comments to pgrminclude.Bruce Momjian
2006-07-11Allow each C include file to compile on its own by including any neededBruce Momjian
header files.
2006-07-11Add libpq include directory to script.Bruce Momjian
2006-07-10Improve compile line for tool.Bruce Momjian
2006-07-10Update usage documention for pgincludeBruce Momjian
2006-07-10Add $CFLAGS handling to pgcompinclude.Bruce Momjian
2006-07-10Fix 'find' args for pgcompinclude tool.Bruce Momjian
2006-07-10Improve tool coding.Bruce Momjian
2006-07-10Improve script by processing only C files.Bruce Momjian
2006-05-31Update cvs command example to show diff -rBASE.Bruce Momjian
2006-05-21Remove mention of pg_upgrade in release checklist.Bruce Momjian
2006-05-19Mention packager bumps configure.in/configure.Bruce Momjian
2006-03-15Fix typo in pgcvslog, used == instead of =.Bruce Momjian
2006-03-11Add CVS tag lines to files that were lacking them.Bruce Momjian
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-05Update to 2006.Bruce Momjian
2006-02-12Update release checlist.Bruce Momjian
2006-02-04Move thread_test directory from /tools to /test so source-only tarballsBruce Momjian
have the directory for the configure test.
2005-12-09Simplify lock manager data structures by making a clear separation betweenTom Lane
the data defining the semantics of a lock method (ie, conflict resolution table and ancillary data, which is all constant) and the hash tables storing the current state. The only thing we give up by this is the ability to use separate hashtables for different lock methods, but there is no need for that anyway. Put some extra fields into the LockMethod definition structs to clean up some other uglinesses, like hard-wired tests for DEFAULT_LOCKMETHOD and USER_LOCKMETHOD. This commit doesn't do anything about the performance issues we were discussing, but it clears away some of the underbrush that's in the way of fixing that.
2005-11-23Fix pgindent of libpq-fe.h by hacking pgindent script.Bruce Momjian
Remove pgbench comment that was causing problems.
2005-11-16Update error message and documentation for fsync test.Bruce Momjian
2005-11-16Have test_fsync honor -f filename argument.Bruce Momjian
2005-11-15Prevent certain symbols that are used for both typedefs and variableBruce Momjian
names from being added to pgindent's typedef list. The existance of them caused weird formatting in the date/type files, and in keywords.c. Backpatch to 8.1.X.
2005-11-15Fix recent problems with BSD indent, including indenting past 80Bruce Momjian
columns, shifting comment to the right when more than 150 'else if' clauses were used, and update typedefs for 8.1.X. NetBSD patched updated, with documentation.
2005-11-13Revert pgindent length back to 79 because we are going to fix the BSDBruce Momjian
indent bug.
2005-11-07Lower pgident length to 77, document BSD indent bug.Bruce Momjian
2005-11-07Change maximum pgindent length from 79 to 78, per Tom.Bruce Momjian
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-11-05Add mention to update FAQ item on most recent release to RELEASE_CHANGES.Bruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-15Update pgindent typedef list.Bruce Momjian
2005-10-10Document the process to update translations.Peter Eisentraut
2005-10-07Remove an unused typedef.Alvaro Herrera