From 2ee5021f36a26f7344b63d3321cda78899edc319 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 20 Mar 2025 15:10:16 +0100 Subject: Allow building without support for limera1n Use --without-limera1n at configure time to disable this feature. --- src/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 80f02f2..a717b45 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -44,10 +44,11 @@ idevicerestore_SOURCES = \ asr.c asr.h \ fdr.c fdr.h \ ace3.c ace3.h \ - limera1n_payload.h \ - limera1n.c limera1n.h \ download.c download.h \ locking.c locking.h +if HAVE_LIMERA1N +idevicerestore_SOURCES += limera1n_payload.h limera1n.c limera1n.h +endif idevicerestore_CFLAGS = $(AM_CFLAGS) idevicerestore_LDFLAGS = $(AM_LDFLAGS) idevicerestore_LDADD = $(AM_LDADD) -- cgit v1.1-32-gdbae