From f1ab71ec5f2614540587282bcaa4dad44a54efa7 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 11 Sep 1998 16:56:24 +0000 Subject: 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 --- src/tools/pgindent/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/pgindent') diff --git a/src/tools/pgindent/README b/src/tools/pgindent/README index 8c95b6a1adf..d0f3324d6ce 100644 --- a/src/tools/pgindent/README +++ b/src/tools/pgindent/README @@ -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 -- cgit v1.2.3