summaryrefslogtreecommitdiff
path: root/src/backend/port/darwin/system.c
Commit message (Collapse)AuthorAgeFilesLines
* Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan2008-05-171-1/+4
| | | | | | | | | | This particular batch was just for *.c and *.h file. The changes were made with the following 2 commands: find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *' find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */'
* Remove advertising clause from Berkeley BSD-licensed files, perBruce Momjian2007-03-261-5/+1
| | | | instructions from Berkeley.
* Pgindent run for 8.0.Bruce Momjian2004-08-291-1/+1
|
* Don't need hack copy of system() anymore in OS X 10.3.Tom Lane2003-11-081-0/+6
|
* This patch removes a bunch of superfluous #include directives: ifBruce Momjian2002-11-081-3/+0
| | | | | | | | postgres.h or c.h includes a system header (such as stdio.h or stdlib.h), there's no need to specifically include it in any of the .c files in the backend. Neil Conway
* Fix indenting for 'extern "C"' cases.Bruce Momjian2001-11-081-44/+50
|
* PostgreSQL works again on Mac OS X 10.1. Hold your nose beforeTom Lane2001-11-081-0/+96
investigating the kluge that makes it so...