procd: fix build when DEBUG is set
authorZefir Kurtisi <zefir.kurtisi@neratec.com>
Thu, 13 Oct 2016 15:40:38 +0000 (17:40 +0200)
committerJohn Crispin <john@phrozen.org>
Fri, 14 Oct 2016 22:52:39 +0000 (00:52 +0200)
There is a collision between the DEBUG set in the CMake file as
flag and the macro defined in log.h, resulting in build error:

In file included from ./procd/initd/init.h:19:0,
                 from ./procd/initd/init.c:33:
./procd/initd/../log.h:20:0: error: "DEBUG" redefined [-Werror]
 #define DEBUG(level, fmt, ...) do { \
 ^
<command-line>:0:0: note: this is the location of the previous definition
cc1: all warnings being treated as errors

This patch fixes the issue by renaming the build flag to
UDEV_DEBUG (since it is only used in udevtrigger).

Signed-off-by: Zefir Kurtisi <zefir.kurtisi@neratec.com>
CMakeLists.txt
plug/udevtrigger.c

index b66fad16600fb2404ff5e97c8a3dd04cc3d80e35..444dd20545b4515748b6f28ab17f814a68dd6751 100644 (file)
@@ -28,7 +28,7 @@ ENDIF()
 SET(LIBS ubox ubus json-c blobmsg_json json_script)
 
 IF(DEBUG)
-  ADD_DEFINITIONS(-DDEBUG -g3)
+  ADD_DEFINITIONS(-DUDEV_DEBUG -g3)
 ENDIF()
 
 IF(EARLY_PATH)
index 3eba19a681e2edee1989dfc4fc35ca85f2f9d1f6..6bb34535aa2832aac4615bd3941aea2e8e2beae7 100644 (file)
@@ -66,7 +66,7 @@ static void log_message(int priority, const char *format, ...)
         log_message(LOG_INFO ,"%s: " format ,__FUNCTION__ ,## arg); \
     } while (0)
 
-#ifdef DEBUG
+#ifdef UDEV_DEBUG
 #undef dbg
 #define dbg(format, arg...)                         \
     do {                                    \