diff options
author | 2025-01-22 10:30:55 +0100 | |
---|---|---|
committer | 2025-01-22 10:30:55 +0100 | |
commit | e1989405ad5ed51cf13776828767a56c84f3e760 (patch) | |
tree | f2cd7479061531df06ce4b6553b747070d1f51c6 /tools | |
parent | 1b09adc72c81481bb5e9fad0ce866619ad2991c6 (diff) | |
download | libimobiledevice-e1989405ad5ed51cf13776828767a56c84f3e760.tar.gz libimobiledevice-e1989405ad5ed51cf13776828767a56c84f3e760.tar.bz2 |
tools: Fix afclient compilation by adding libimobiledevice-glue dependency
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 8bd29b1..24cfc66 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -135,8 +135,8 @@ idevicesetlocation_LDFLAGS = $(AM_LDFLAGS) idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la afcclient_SOURCES = afcclient.c -afcclient_CFLAGS = $(AM_CFLAGS) -afcclient_LDFLAGS = $(AM_LDFLAGS) +afcclient_CFLAGS = $(AM_CFLAGS) $(limd_glue_CFLAGS) +afcclient_LDFLAGS = $(AM_LDFLAGS) $(limd_glue_LIBS) if HAVE_READLINE afcclient_CFLAGS += $(readline_CFLAGS) afcclient_LDFLAGS += $(readline_LIBS) |