74 lines
2.7 KiB
Diff
74 lines
2.7 KiB
Diff
From d0dea8f8699224ac1b6888bf6da7cfc71de213ca Mon Sep 17 00:00:00 2001
|
|
From: Kamil Dudka <kdudka@redhat.com>
|
|
Date: Thu, 19 Aug 2010 16:38:22 +0200
|
|
Subject: [PATCH] AC_INIT: avoid a warning with autoconf 2.66
|
|
|
|
It was complaining about the '=>' operator, introduced in e3fc0d5.
|
|
---
|
|
configure.ac | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index db04447..a389cfd 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -24,7 +24,7 @@ dnl Process this file with autoconf to produce a configure script.
|
|
AC_PREREQ(2.57)
|
|
|
|
dnl We don't know the version number "statically" so we use a dash here
|
|
-AC_INIT([curl], [-], [a suitable curl mailing list => http://curl.haxx.se/mail/])
|
|
+AC_INIT([curl], [-], [a suitable curl mailing list: http://curl.haxx.se/mail/])
|
|
|
|
CURL_OVERRIDE_AUTOCONF
|
|
|
|
--
|
|
1.7.2.1
|
|
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -2,7 +2,7 @@
|
|
# Guess values for system-dependent variables and create Makefiles.
|
|
# Generated by GNU Autoconf 2.67 for curl -.
|
|
#
|
|
-# Report bugs to <a suitable curl mailing list => http://curl.haxx.se/mail/>.
|
|
+# Report bugs to <a suitable curl mailing list: http://curl.haxx.se/mail/>.
|
|
#
|
|
#
|
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
|
@@ -737,7 +737,7 @@
|
|
PACKAGE_TARNAME='curl'
|
|
PACKAGE_VERSION='-'
|
|
PACKAGE_STRING='curl -'
|
|
-PACKAGE_BUGREPORT='a suitable curl mailing list => http://curl.haxx.se/mail/'
|
|
+PACKAGE_BUGREPORT='a suitable curl mailing list: http://curl.haxx.se/mail/'
|
|
PACKAGE_URL=''
|
|
|
|
ac_unique_file="lib/urldata.h"
|
|
@@ -1792,7 +1792,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 <a suitable curl mailing list => http://curl.haxx.se/mail/>.
|
|
+Report bugs to <a suitable curl mailing list: http://curl.haxx.se/mail/>.
|
|
_ACEOF
|
|
ac_status=$?
|
|
fi
|
|
@@ -2361,7 +2361,7 @@
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
|
|
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
|
( $as_echo "## ------------------------------------------------------------------------ ##
|
|
-## Report this to a suitable curl mailing list => http://curl.haxx.se/mail/ ##
|
|
+## Report this to a suitable curl mailing list: http://curl.haxx.se/mail/ ##
|
|
## ------------------------------------------------------------------------ ##"
|
|
) | sed "s/^/$as_me: WARNING: /" >&2
|
|
;;
|
|
@@ -35093,7 +35093,7 @@
|
|
Configuration commands:
|
|
$config_commands
|
|
|
|
-Report bugs to <a suitable curl mailing list => http://curl.haxx.se/mail/>."
|
|
+Report bugs to <a suitable curl mailing list: http://curl.haxx.se/mail/>."
|
|
|
|
_ACEOF
|
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|