File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 5
5
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
6
6
# Portions Copyright (c) 1994, Regents of the University of California
7
7
#
8
- # $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.56 2004/10/05 19:30:23 momjian Exp $
8
+ # $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.57 2004/10/07 13:45:48 momjian Exp $
9
9
#
10
10
# -------------------------------------------------------------------------
11
11
@@ -22,7 +22,8 @@ OBJS= pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o \
22
22
23
23
EXTRA_OBJS = $(top_builddir ) /src/backend/parser/keywords.o
24
24
25
- # not sure why MinGW needs this but it prevents a link failure
25
+ # Not sure why MinGW needs this but it prevents a link failure
26
+ # of duplicate definitions for pg_tolower(). 2004-10-06
26
27
ifeq ($(PORTNAME ) , win32)
27
28
EXTRA_OBJS += $(top_builddir ) /src/port/exec.o
28
29
endif
Original file line number Diff line number Diff line change 38
38
# mark some comments for special treatment later
39
39
sed ' s;/\* *---;/*---X_X;g' |
40
40
# workaround for indent bug with 'else' handling
41
- sed ' s;\([} ]\)else\([ ]*\)\(/\*.*\)$;\1else\
42
- \2\3;g' |
41
+ sed ' s;\([ ]*\)else[ ]*\(/\*.*\)$;\1else\
42
+ \1\2;g' |
43
+ sed ' s;\([ ]*\)\(}[ ]\)else[ ]*\(/\*.*\)$;\1\2else\
44
+ \1\3;g' |
43
45
detab -t4 -qc |
44
46
# work around bug where function that defines no local variables misindents
45
47
# switch() case lines and line after #else. Do not do for struct/enum.
You can’t perform that action at this time.
0 commit comments