From 2202ecab8171093b22c800e295236a4db4570e44 Mon Sep 17 00:00:00 2001 From: Kitae Kim Date: Thu, 11 Sep 2014 13:45:55 +0900 Subject: [PATCH] build: fix linking error on Windows. -ldl is not available on Windows platform. Change-Id: I2d108555d8b17aadd57eb4ddc7ec03e9235aa2d8 Signed-off-by: Kitae Kim --- tizen/src/hw/pci/Makefile.objs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tizen/src/hw/pci/Makefile.objs b/tizen/src/hw/pci/Makefile.objs index 46a584f..0d2d6b3 100644 --- a/tizen/src/hw/pci/Makefile.objs +++ b/tizen/src/hw/pci/Makefile.objs @@ -1,5 +1,7 @@ obj-y += maru_brillcodec_device.o +ifdef CONFIG_LINUX LIBS += -ldl +endif obj-y += maru_brillcodec.o obj-y += maru_brightness.o -- 2.7.4