AC_SUBST(libdir_name)
AC_ARG_WITH(selinux,
- AS_HELP_STRING([--with-selinux], [compile with SELinux support]),
+ AS_HELP_STRING([--with-selinux], [enable SELinux support]),
[], with_selinux=no)
if test "x$with_selinux" = xyes; then
LIBS_save=$LIBS
[],
AC_MSG_ERROR([SELinux selected but libselinux not found]))
LIBS=$LIBS_save
- AC_DEFINE(USE_SELINUX, [1] ,[compile with SELinux support])
SELINUX_LIBS="-lselinux -lsepol"
+ AC_DEFINE(WITH_SELINUX, [1] ,[SELinux support.])
fi
AC_SUBST([SELINUX_LIBS])
-AM_CONDITIONAL(USE_SELINUX, [test "x$with_selinux" = xyes], [compile with SELinux support])
+AM_CONDITIONAL(WITH_SELINUX, [test "x$with_selinux" = xyes])
AC_ARG_ENABLE(debug,
- AS_HELP_STRING([--enable-debug], [turn on debugging]),
+ AS_HELP_STRING([--enable-debug], [enable debug messages]),
[], enable_debug=no)
if test "x$enable_debug" = "xyes"; then
- AC_DEFINE(DEBUG, [1] ,[Compile in debug messages])
- DEBUG_CFLAGS="-DDEBUG"
+ AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
fi
-AC_SUBST(DEBUG_CFLAGS)
AC_ARG_ENABLE(logging,
- AS_HELP_STRING([--disable-logging], [turn off logging/syslog]),
+ AS_HELP_STRING([--disable-logging], [disable system logging]),
[], enable_logging=yes)
-if test "x$enable_logging" != "xno"; then
- AC_DEFINE(USE_LOG, [1] ,[Use logging/syslog])
+if test "x$enable_logging" = "xyes"; then
+ AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
fi
AC_CONFIG_HEADERS(config.h)
udev_log(udev, LOG_ERR, __FILE__, __LINE__, __FUNCTION__, ## arg); \
} while (0)
-#ifdef USE_LOG
-# ifdef DEBUG
+#ifdef ENABLE_LOGGING
+# ifdef ENABLE_DEBUG
# define dbg(udev, arg...) udev_log_cond(udev, LOG_DEBUG, ## arg)
# else
# define dbg(udev, arg...) udev_log_null(udev, ## arg)
char *result, size_t maxsize, int read_value);
/* libudev-selinux-private.c */
-#ifndef USE_SELINUX
+#ifndef WITH_SELINUX
static inline void udev_selinux_init(struct udev *udev) {}
static inline void udev_selinux_exit(struct udev *udev) {}
static inline void udev_selinux_lsetfilecon(struct udev *udev, const char *file, unsigned int mode) {}
unsigned int token_cur;
};
-#ifdef DEBUG
+#ifdef ENABLE_DEBUG
static const char *operation_str(enum operation_type type)
{
static const char *operation_strs[] = {
static inline const char *token_str(enum token_type type) { return NULL; }
static inline void dump_token(struct udev_rules *rules, struct token *token) {}
static inline void dump_rules(struct udev_rules *rules) {}
-#endif /* DEBUG */
+#endif /* ENABLE_DEBUG */
static int add_new_string(struct udev_rules *rules, const char *str, size_t bytes)
{