From 7a5e6196a8c5fbb8f52c2ccc0d73a5842818b5c1 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 5 Nov 2024 02:55:37 +0100 Subject: Fix conditional compile for libreadline --- tools/Makefile.am | 5 ++++- tools/irecovery.c | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/Makefile.am b/tools/Makefile.am index ebb085c..15e2eb9 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -2,12 +2,15 @@ if BUILD_TOOLS AM_CPPFLAGS = -I$(top_srcdir)/include AM_CFLAGS = $(GLOBAL_CFLAGS) $(libusb_CFLAGS) -AM_LDFLAGS = $(libusb_LIBS) -lreadline +AM_LDFLAGS = $(libusb_LIBS) bin_PROGRAMS = irecovery irecovery_SOURCES = irecovery.c irecovery_CFLAGS = $(AM_CFLAGS) irecovery_LDFLAGS = $(AM_LDFLAGS) +if HAVE_READLINE +irecovery_LDFLAGS += -lreadline +endif irecovery_LDADD = $(top_builddir)/src/libirecovery-1.0.la endif diff --git a/tools/irecovery.c b/tools/irecovery.c index f527c44..b41573c 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -595,7 +595,11 @@ int main(int argc, char* argv[]) return 0; case 'V': - printf("%s %s\n", TOOL_NAME, PACKAGE_VERSION); + printf("%s %s", TOOL_NAME, PACKAGE_VERSION); +#ifdef HAVE_READLINE + printf(" (readline)"); +#endif + printf("\n"); return 0; default: -- cgit v1.1-32-gdbae