chiark / gitweb /
USE_LOG -> ENABLE_LOGGING, DEBUG -> ENABLE_DEBUG, USE_SELINUX -> WITH_SELINUX
authorKay Sievers <kay.sievers@vrfy.org>
Sun, 14 Jun 2009 15:53:15 +0000 (17:53 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Sun, 14 Jun 2009 15:53:15 +0000 (17:53 +0200)
configure.ac
extras/floppy/Makefile.am
libudev/libudev-private.h
udev/Makefile.am
udev/udev-rules.c

index e9c949647abdc2a40673e9829e0b1a4cbaa4360d..85ca34aec6340d93e896d945f0ef225497880ddd 100644 (file)
@@ -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)
index cbdcf6e8fb5732d4c8d42be2af813373182d75d3..6854d62d57b1d881a71e962991f207a54e875955 100644 (file)
@@ -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 = \
index 9770e8b63c05f3b6f2eb509a18a7c4f3362ad58b..5c10b4e37a9947c6047c034856f33303d44ae6cd 100644 (file)
@@ -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) {}
index 14ec79e8d687eebada50fe79f754ebdf2e899d11..5f6f7c54c00ff5a91f10ed5bd9ef77406a283567 100644 (file)
@@ -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 += \
index 5cb381ebac68f561e7b2c1372042edd1ca2b2c0f..7db890fed91166869cee5699d1eb83fb83f45053 100644 (file)
@@ -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)
 {