blob: 3ff6894409ba71bc738d7424a543d5906f10d49a [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From 0686564f64130f230870db8b4846973e3edbd646 Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Wenzong Fan <wenzong.fan@windriver.com>
3Date: Mon, 1 Dec 2014 02:08:27 -0500
4Subject: [PATCH] apache2: allow to disable selinux support
5
6Upstream-Status: Pending
7
8Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
9---
10 configure.in | 14 ++++++++++----
11 1 file changed, 10 insertions(+), 4 deletions(-)
12
13diff --git a/configure.in b/configure.in
Andrew Geissler9aee5002022-03-30 16:27:02 +000014index 76811e7..4df3ff3 100644
Brad Bishopc342db32019-05-15 21:57:59 -040015--- a/configure.in
16+++ b/configure.in
Andrew Geissler9aee5002022-03-30 16:27:02 +000017@@ -491,10 +491,16 @@ getloadavg
Brad Bishopc342db32019-05-15 21:57:59 -040018 dnl confirm that a void pointer is large enough to store a long integer
19 APACHE_CHECK_VOID_PTR_LEN
20
21-AC_CHECK_LIB(selinux, is_selinux_enabled, [
22- AC_DEFINE(HAVE_SELINUX, 1, [Defined if SELinux is supported])
23- APR_ADDTO(AP_LIBS, [-lselinux])
24-])
25+# SELinux support
26+AC_ARG_ENABLE(selinux,APACHE_HELP_STRING(--enable-selinux,Enable SELinux support [default=auto]),
27+ [],[enable_selinux=auto])
28+
29+if test x$enable_selinux != xno; then
30+ AC_CHECK_LIB(selinux, is_selinux_enabled, [
31+ AC_DEFINE(HAVE_SELINUX, 1, [Defined if SELinux is supported])
32+ APR_ADDTO(AP_LIBS, [-lselinux])
33+ ])
34+fi
35
36 AC_CACHE_CHECK([for gettid()], ac_cv_gettid,
37 [AC_TRY_RUN(#define _GNU_SOURCE
38--
Andrew Geissler9aee5002022-03-30 16:27:02 +0000392.25.1
Brad Bishopc342db32019-05-15 21:57:59 -040040