]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix http: URL in 'configure'
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 9 Sep 2019 21:10:23 +0000 (14:10 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 9 Sep 2019 21:16:40 +0000 (14:16 -0700)
* configure.ac: Add URL to AC_INIT so that it generates an
https: URL instead of an http: URL.
* configure: Regenerate.

ChangeLog
configure
configure.ac

index 307ae5874f6d62c8cc430304eac59e7d60aa8889..00658e68350cff75c118358c24b86cc499ccbef4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2019-09-09  Paul Eggert  <eggert@cs.ucla.edu>
 
+       Fix http: URL in 'configure'
+       * configure.ac: Add URL to AC_INIT so that it generates an
+       https: URL instead of an http: URL.
+       * configure: Regenerate.
+
        Regenerate charmap-kw.h, locfile-kw.h
        This propagates the recent http->https URL changes.
        Since I used gperf 3.1 to regenerate, this is also a minor
index 618c9836fcbef8dbf95f21df63a7db16b0c0a5ef..2f44b66656e74ea571c47293f9af88df271bf7e4 100755 (executable)
--- a/configure
+++ b/configure
@@ -582,7 +582,7 @@ PACKAGE_TARNAME='glibc'
 PACKAGE_VERSION='(see version.h)'
 PACKAGE_STRING='GNU C Library (see version.h)'
 PACKAGE_BUGREPORT='https://sourceware.org/bugzilla/'
-PACKAGE_URL='http://www.gnu.org/software/glibc/'
+PACKAGE_URL='https://www.gnu.org/software/glibc/'
 
 ac_unique_file="include/features.h"
 enable_option_checking=no
@@ -1505,7 +1505,7 @@ Use these variables to override the choices made by `configure' or to help
 it to find libraries and programs with nonstandard names/locations.
 
 Report bugs to <https://sourceware.org/bugzilla/>.
-GNU C Library home page: <http://www.gnu.org/software/glibc/>.
+GNU C Library home page: <https://www.gnu.org/software/glibc/>.
 General help using GNU software: <http://www.gnu.org/gethelp/>.
 _ACEOF
 ac_status=$?
@@ -7473,7 +7473,7 @@ Configuration commands:
 $config_commands
 
 Report bugs to <https://sourceware.org/bugzilla/>.
-GNU C Library home page: <http://www.gnu.org/software/glibc/>.
+GNU C Library home page: <https://www.gnu.org/software/glibc/>.
 General help using GNU software: <http://www.gnu.org/gethelp/>."
 
 _ACEOF
index b7a22afb8662fbe6b27c0f712907c2da53c09fd3..e69c88c543521923e3af9b25b85af2edbb6dc162 100644 (file)
@@ -1,6 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl Note we do not use AC_PREREQ here!  See aclocal.m4 for what we use instead.
-AC_INIT([GNU C Library], [(see version.h)], [https://sourceware.org/bugzilla/], [glibc])
+AC_INIT([GNU C Library], [(see version.h)], [https://sourceware.org/bugzilla/],
+  [glibc], [https://www.gnu.org/software/glibc/])
 AC_CONFIG_SRCDIR([include/features.h])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR([scripts])