mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
The attached patches fix the following problems:
1. The UnixWare tas macro was reformatted (by indent or it like?) which caused it to break. The asm macro construct is very particular about the %mem construct -- it has to start in column 1. 2. When compiling libpq++, g++ was used even if configure found the C++ com- piler to be CC. 3. When compiling libpq++, '-Wno-error' was added to CXXFLAGS, even if the compiler wasn't g++. Billy G. Allie
This commit is contained in:
@ -3,7 +3,7 @@ This can format all PostgreSQL *.c and *.h files, excluding libpq++,
|
||||
|
||||
On 09/06/1997, from the top directory, I ran:
|
||||
|
||||
find . -name '*.[ch]' -type f -print | grep -v '++' | grep -v '/odbc/' | xargs -n100 pgindent
|
||||
find . -name '*.[ch]' -type f -print | egrep -v '++|/odbc/|s_lock.h' | xargs -n100 pgindent
|
||||
|
||||
The stock BSD indent has two bugs. First, a comment after the word 'else'
|
||||
causes the rest of the file to be ignored. Second, it silently ignores
|
||||
|
Reference in New Issue
Block a user