summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2004-07-31 15:18:04 +0000
committerColin Walters <walters@verbum.org>2004-07-31 15:18:04 +0000
commit1239d9328095553e034ee44c627901ab28c9193d (patch)
tree9c747b5eba8f0bf7ac8d9311afaeafd18aee4d03
parentfabef9f3992a6a14bf649bbde73ce3d86542764e (diff)
2004-07-31 Colin Walters <walters@redhat.com>
* configure.in: Move #error in SELinux check to its own line.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e616720b..229872e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-31 Colin Walters <walters@redhat.com>
+
+ * configure.in: Move #error in SELinux check to its own line.
+
2004-07-31 Olivier Andrieu <oliv__a@users.sourceforge.net>
* dbus/dbus-internals.h (_DBUS_SET_OOM):
diff --git a/configure.in b/configure.in
index c04097b5..cbc4774e 100644
--- a/configure.in
+++ b/configure.in
@@ -703,7 +703,8 @@ else
AC_MSG_CHECKING([for DBUS Flask permissions in selinux/av_permissions.h])
AC_TRY_COMPILE([#include <selinux/av_permissions.h>],
[#ifdef DBUS__ACQUIRE_SVC return 0;
- #else #error DBUS__ACQUIRE_SVC not defined
+ #else
+ #error DBUS__ACQUIRE_SVC not defined
#endif],
have_selinux=yes, have_selinux=no)
AC_MSG_RESULT($have_selinux)