View | Details | Raw Unified | Return to bug 134602
Collapse All | Expand All

(-)Makefile (-11 / +1 lines)
Lines 29-42 Link Here
29
LATEST_LINK=	rt38
29
LATEST_LINK=	rt38
30
30
31
OPTIONS=	MYSQL 		"Enable MySQL backend" 		on  \
31
OPTIONS=	MYSQL 		"Enable MySQL backend" 		on  \
32
		APACHE2		"Enable Apache2 server"		on  \
32
		APACHE		"Enable ${APACHE_PORT} server"		on  \
33
		MODPERL2	"Enable mod_perl2 support"	on  \
33
		MODPERL2	"Enable mod_perl2 support"	on  \
34
		POSTGRESQL 	"Enable Postgresql backend"	off \
34
		POSTGRESQL 	"Enable Postgresql backend"	off \
35
		ORACLE		"Enable Oracle backend"		off \
35
		ORACLE		"Enable Oracle backend"		off \
36
		SQLITE		"Enable SQLite backend" 	off \
36
		SQLITE		"Enable SQLite backend" 	off \
37
		DEV 		"Configure for Developers"	off \
37
		DEV 		"Configure for Developers"	off \
38
		STANDALONE	"Enable standalone server"	off \
38
		STANDALONE	"Enable standalone server"	off \
39
		APACHE		"Enable Apache1.3.x server"	off \
40
		MODPERL		"Enable mod_perl support"	off \
39
		MODPERL		"Enable mod_perl support"	off \
41
		FASTCGI		"Enable FastCGI support" 	off \
40
		FASTCGI		"Enable FastCGI support" 	off \
42
		GRAPHVIZ	"Enable GraphViz charts"	on
41
		GRAPHVIZ	"Enable GraphViz charts"	on
Lines 70-79 Link Here
70
RUN_DEPENDS+=	${STANDALONE_DEPS}
69
RUN_DEPENDS+=	${STANDALONE_DEPS}
71
.endif
70
.endif
72
71
73
.if defined(WITH_APACHE2)
74
USE_APACHE=	2.0+
75
.endif
76
77
.if defined(WITH_APACHE)
72
.if defined(WITH_APACHE)
78
USE_APACHE=	1.3+
73
USE_APACHE=	1.3+
79
.endif
74
.endif
Lines 133-143 Link Here
133
#IGNORE=	Select exactly one of WITH_MYSQL, WITH_POSTGRESQL, WITH_SQLITE, WITH_ORACLE
128
#IGNORE=	Select exactly one of WITH_MYSQL, WITH_POSTGRESQL, WITH_SQLITE, WITH_ORACLE
134
#.endif
129
#.endif
135
130
136
### APACHE or APACHE2
137
.if defined(WITH_APACHE) && defined(WITH_APACHE2)
138
IGNORE=	options WITH_APACHE and WITH_APACHE2 are mutually exclusive
139
.endif
140
141
### MODPERL or MODPERL2
131
### MODPERL or MODPERL2
142
.if defined(WITH_MODPERL) && defined(WITH_MODPERL2)
132
.if defined(WITH_MODPERL) && defined(WITH_MODPERL2)
143
IGNORE=	options WITH_MODPERL and WITH_MODPERL2 are mutually exclusive
133
IGNORE=	options WITH_MODPERL and WITH_MODPERL2 are mutually exclusive

Return to bug 134602