mirror of
https://github.com/systemd/systemd.git
synced 2025-01-11 09:18:07 +03:00
USE_LOG -> ENABLE_LOGGING, DEBUG -> ENABLE_DEBUG, USE_SELINUX -> WITH_SELINUX
This commit is contained in:
parent
98ad80f873
commit
045a3bc89e
18
configure.ac
18
configure.ac
@ -37,7 +37,7 @@ libdir_name=$with_libdir_name
|
||||
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
|
||||
@ -45,26 +45,24 @@ if test "x$with_selinux" = xyes; then
|
||||
[],
|
||||
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)
|
||||
|
@ -15,7 +15,7 @@ create_floppy_devices_SOURCES = \
|
||||
../../libudev/libudev-device.c \
|
||||
../../libudev/libudev-enumerate.c
|
||||
|
||||
if USE_SELINUX
|
||||
if WITH_SELINUX
|
||||
create_floppy_devices_SOURCES += \
|
||||
../../libudev/libudev-selinux-private.c
|
||||
create_floppy_devices_LDADD = \
|
||||
|
@ -29,8 +29,8 @@ udev_log_null(struct udev *udev, const char *format, ...) {}
|
||||
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)
|
||||
@ -219,7 +219,7 @@ int util_resolve_subsys_kernel(struct udev *udev, const char *string,
|
||||
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) {}
|
||||
|
@ -29,7 +29,7 @@ common_files = \
|
||||
../libudev/libudev-queue-private.c \
|
||||
../libudev/libudev-ctrl.c
|
||||
|
||||
if USE_SELINUX
|
||||
if WITH_SELINUX
|
||||
common_files += \
|
||||
../libudev/libudev-selinux-private.c
|
||||
common_ldadd += \
|
||||
|
@ -211,7 +211,7 @@ struct rule_tmp {
|
||||
unsigned int token_cur;
|
||||
};
|
||||
|
||||
#ifdef DEBUG
|
||||
#ifdef ENABLE_DEBUG
|
||||
static const char *operation_str(enum operation_type type)
|
||||
{
|
||||
static const char *operation_strs[] = {
|
||||
@ -421,7 +421,7 @@ static inline const char *operation_str(enum operation_type type) { return NULL;
|
||||
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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user