blob: 2fb4057ec083a0f5e5422df6c4a60809868ee25c [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From b3acc4c6407f9553f32582a9aee6a11b5fcd1d8a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 14 Jul 2017 13:17:19 -0700
4Subject: [PATCH 2/3] contrib/test: Link mc_nextgen_test with libargp if needed
5
6musl depends on external argp implementation e.g.
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 contrib/test/Makefile.am | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am
14index 4641e21..e47b948 100644
15--- a/contrib/test/Makefile.am
16+++ b/contrib/test/Makefile.am
17@@ -32,7 +32,7 @@ v4l2gl_LDFLAGS = $(X11_LIBS) $(GL_LIBS) $(GLU_LIBS) $(ARGP_LIBS)
18 v4l2gl_LDADD = ../../lib/libv4l2/libv4l2.la ../../lib/libv4lconvert/libv4lconvert.la
19
20 mc_nextgen_test_CFLAGS = $(LIBUDEV_CFLAGS)
21-mc_nextgen_test_LDFLAGS = $(LIBUDEV_LIBS)
22+mc_nextgen_test_LDFLAGS = $(ARGP_LIBS) $(LIBUDEV_LIBS)
23
24
25 ioctl_test_SOURCES = ioctl-test.c ioctl-test.h ioctl_32.h ioctl_64.h
26--
272.13.3
28