From b063cc34a30a4edf109343ff373b2b62b8ca72d3 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 27 Jan 2010 13:31:03 +0200 Subject: [PATCH] Use PACKAGE_URL instead of custom PACKAGE_HOMEPAGE. --- configure.ac | 9 ++------- src/liblzma/liblzma.pc.in | 2 +- src/lzmainfo/lzmainfo.c | 2 +- src/xz/message.c | 2 +- src/xzdec/xzdec.c | 2 +- 5 files changed, 6 insertions(+), 11 deletions(-) diff --git a/configure.ac b/configure.ac index 706ab5a..41726b7 100644 --- a/configure.ac +++ b/configure.ac @@ -15,20 +15,15 @@ # of malloc(), stat(), or lstat(), since we don't use those functions in # a way that would cause the problems the autoconf macros check. -AC_PREREQ([2.61]) +AC_PREREQ([2.64]) AC_INIT([XZ Utils], m4_esyscmd([/bin/sh version.sh]), - [lasse.collin@tukaani.org], [xz]) + [lasse.collin@tukaani.org], [xz], [http://tukaani.org/xz/]) AC_CONFIG_SRCDIR([src/liblzma/common/common.h]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER([config.h]) -PACKAGE_HOMEPAGE=http://tukaani.org/xz/ -AC_DEFINE_UNQUOTED([PACKAGE_HOMEPAGE], ["$PACKAGE_HOMEPAGE"], - [Define to the URL of the home page of this package.]) -AC_SUBST([PACKAGE_HOMEPAGE]) - echo echo "$PACKAGE_STRING" diff --git a/src/liblzma/liblzma.pc.in b/src/liblzma/liblzma.pc.in index eb3f6c7..7f11f1a 100644 --- a/src/liblzma/liblzma.pc.in +++ b/src/liblzma/liblzma.pc.in @@ -12,7 +12,7 @@ includedir=@includedir@ Name: liblzma Description: General purpose data compression library -URL: @PACKAGE_HOMEPAGE@ +URL: @PACKAGE_URL@ Version: @PACKAGE_VERSION@ Cflags: -I${includedir} Libs: -L${libdir} -llzma diff --git a/src/lzmainfo/lzmainfo.c b/src/lzmainfo/lzmainfo.c index caef7b5..af8e66c 100644 --- a/src/lzmainfo/lzmainfo.c +++ b/src/lzmainfo/lzmainfo.c @@ -34,7 +34,7 @@ _("Usage: %s [--help] [--version] [FILE]...\n" printf(_("Report bugs to <%s> (in English or Finnish).\n"), PACKAGE_BUGREPORT); - printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_HOMEPAGE); + printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL); tuklib_exit(EXIT_SUCCESS, EXIT_FAILURE, true); } diff --git a/src/xz/message.c b/src/xz/message.c index 6c26d0b..865f759 100644 --- a/src/xz/message.c +++ b/src/xz/message.c @@ -1165,7 +1165,7 @@ message_help(bool long_help) // address for translation bugs. Thanks. printf(_("Report bugs to <%s> (in English or Finnish).\n"), PACKAGE_BUGREPORT); - printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_HOMEPAGE); + printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL); tuklib_exit(E_SUCCESS, E_ERROR, verbosity != V_SILENT); } diff --git a/src/xzdec/xzdec.c b/src/xzdec/xzdec.c index 0abcceb..2b16686 100644 --- a/src/xzdec/xzdec.c +++ b/src/xzdec/xzdec.c @@ -82,7 +82,7 @@ help(void) "%" PRIu64 " MiB RAM.\n" "\n" "Report bugs to <" PACKAGE_BUGREPORT "> (in English or Finnish).\n" -PACKAGE_NAME " home page: <" PACKAGE_HOMEPAGE ">\n", +PACKAGE_NAME " home page: <" PACKAGE_URL ">\n", progname, memlimit / (1024 * 1024)); tuklib_exit(EXIT_SUCCESS, EXIT_FAILURE, display_errors); } -- 2.39.2