From: Kim Gunsoo Date: Mon, 7 Nov 2016 04:59:54 +0000 (+0900) Subject: Remove the libudev dependency in Linux OS. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75ba8e75140998f8f0736dc25555a75fe169b448;p=sdk%2Ftools%2Fsdb.git Remove the libudev dependency in Linux OS. - Because the SDB server does not use the libudev, remove the build dependencies of libudev. Change-Id: Iccea32d06c3c2aaa288736edb74bcb9ccc355795 Signed-off-by: Kim Gunsoo --- diff --git a/Makefile b/Makefile index 342c96f..9f1886c 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ ifeq ($(HOST_OS),linux) LOCAL_USB_SRC := src/usb_linux.c LOCAL_UTIL_SRC := src/utils_unix.c LOCAL_OTHER_SRC := src/fdevent.c src/fdevent_unix.c src/auto_complete.c - LOCAL_LFLAGS := -lrt -lpthread -ludev -lcrypto + LOCAL_LFLAGS := -lrt -lpthread -lcrypto LOCAL_CFLAGS := -DOS_LINUX -DHAVE_FORKEXEC -DHAVE_SYMLINKS -DSDB_HOST=1 -DSDB_HOST_ON_TARGET=1 -D_FILE_OFFSET_BITS=64 endif