File tree 5 files changed +9
-23
lines changed
5 files changed +9
-23
lines changed Original file line number Diff line number Diff line change 1
- # $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.8 2003/01/31 20:58:00 tgl Exp $
1
+ # $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.9 2003/05/14 03:27:21 tgl Exp $
2
2
3
3
subdir = contrib/cube
4
4
top_builddir = ../..
@@ -17,17 +17,11 @@ cubeparse.o: cubescan.c
17
17
18
18
cubeparse.c : cubeparse.h ;
19
19
20
- # The sed hack is so that we can get the same error messages with
21
- # bison 1.875 and later as we did with earlier bisons. Eventually,
22
- # I suppose, we should re-standardize on "syntax error" --- in which
23
- # case flip the sed translation, but don't remove it.
24
-
25
20
cubeparse.h : cubeparse.y
26
21
ifdef YACC
27
22
$(YACC) -d $(YFLAGS) -p cube_yy $<
28
- sed -e 's/"syntax error/"parse error/' < y.tab.c > cubeparse.c
23
+ mv -f y.tab.c cubeparse.c
29
24
mv -f y.tab.h cubeparse.h
30
- rm -f y.tab.c
31
25
else
32
26
@$(missing) bison $< $@
33
27
endif
Original file line number Diff line number Diff line change 2
2
* Header file for pg_autovacuum.c
3
3
* (c) 2003 Matthew T. O'Connor
4
4
*/
5
+ #include "postgres_fe.h"
5
6
6
- #include <stdio.h>
7
- #include <stdlib.h>
8
-
9
- /* Includes that I added */
10
- #include <string.h>
11
7
#include <unistd.h>
12
- #include <getopt.h>
13
8
#include <sys/time.h>
14
- #include "../../interfaces/libpq/libpq-fe.h"
9
+
10
+ #include "libpq-fe.h"
15
11
#include "lib/dllist.h"
16
12
17
13
#define AUTOVACUUM_DEBUG 1
Original file line number Diff line number Diff line change 65
65
66
66
/* for ntohl/htonl */
67
67
#include <netinet/in.h>
68
+ #include <arpa/inet.h>
68
69
69
70
#define _PASSWORD_EFMT1 '_'
70
71
Original file line number Diff line number Diff line change 1
- # $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.8 2003/01/31 20:58:00 tgl Exp $
1
+ # $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.9 2003/05/14 03:27:22 tgl Exp $
2
2
3
3
subdir = contrib/seg
4
4
top_builddir = ../..
@@ -16,17 +16,11 @@ segparse.o: segscan.c
16
16
17
17
segparse.c : segparse.h ;
18
18
19
- # The sed hack is so that we can get the same error messages with
20
- # bison 1.875 and later as we did with earlier bisons. Eventually,
21
- # I suppose, we should re-standardize on "syntax error" --- in which
22
- # case flip the sed translation, but don't remove it.
23
-
24
19
segparse.h : segparse.y
25
20
ifdef YACC
26
21
$(YACC) -d $(YFLAGS) -p seg_yy $<
27
- sed -e 's/"syntax error/"parse error/' < y.tab.c > segparse.c
22
+ mv -f y.tab.c segparse.c
28
23
mv -f y.tab.h segparse.h
29
- rm -f y.tab.c
30
24
else
31
25
@$(missing) bison $< $@
32
26
endif
Original file line number Diff line number Diff line change 32
32
#include "fmgr.h"
33
33
#include "funcapi.h"
34
34
#include "executor/spi.h"
35
+ #include "lib/stringinfo.h"
35
36
#include "miscadmin.h"
36
37
#include "utils/builtins.h"
37
38
#include "utils/guc.h"
You can’t perform that action at this time.
0 commit comments