From af14742782fc0cb72d25006de9316842236ad5cb Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 6 Oct 2015 21:29:08 +0200 Subject: Show project URL in usage output --- tools/irecovery.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/irecovery.c b/tools/irecovery.c index 1b1386a..3628b03 100644 --- a/tools/irecovery.c +++ b/tools/irecovery.c @@ -2,7 +2,7 @@ * irecovery.c * Software frontend for iBoot/iBSS communication with iOS devices * - * Copyright (c) 2012-2013 Martin Szulecki + * Copyright (c) 2012-2015 Martin Szulecki * Copyright (c) 2010-2011 Chronic-Dev Team * Copyright (c) 2010-2011 Joshua Hill * Copyright (c) 2008-2011 Nicolas Haunold @@ -18,6 +18,10 @@ * Lesser General Public License for more details. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include @@ -330,6 +334,7 @@ static void print_usage(int argc, char **argv) { printf(" -v\t\tenable verbose output, repeat for higher verbosity\n"); printf(" -h\t\tprints this usage information\n"); printf("\n"); + printf("Homepage: <" PACKAGE_URL ">\n"); } int main(int argc, char* argv[]) { -- cgit v1.1-32-gdbae