Skip to content

Commit 0bae92b

Browse files
committed
regen
1 parent 46def7b commit 0bae92b

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

aclocal.m4

+17-17
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# PARTICULAR PURPOSE.
1313

1414
m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15-
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
16-
# serial 11 (pkg-config-0.29.1)
15+
# pkg.m4 - Macros to locate and use pkg-config. -*- Autoconf -*-
16+
# serial 12 (pkg-config-0.29.2)
1717

1818
dnl Copyright © 2004 Scott James Remnant <[email protected]>.
1919
dnl Copyright © 2012-2015 Dan Nicholson <[email protected]>
@@ -55,7 +55,7 @@ dnl
5555
dnl See the "Since" comment for each macro you use to see what version
5656
dnl of the macros you require.
5757
m4_defun([PKG_PREREQ],
58-
[m4_define([PKG_MACROS_VERSION], [0.29.1])
58+
[m4_define([PKG_MACROS_VERSION], [0.29.2])
5959
m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
6060
[m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
6161
])dnl PKG_PREREQ
@@ -100,7 +100,7 @@ dnl Check to see whether a particular set of modules exists. Similar to
100100
dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
101101
dnl
102102
dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
103-
dnl only at the first occurence in configure.ac, so if the first place
103+
dnl only at the first occurrence in configure.ac, so if the first place
104104
dnl it's called might be skipped (such as if it is within an "if", you
105105
dnl have to call PKG_CHECK_EXISTS manually
106106
AC_DEFUN([PKG_CHECK_EXISTS],
@@ -156,7 +156,7 @@ AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
156156
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
157157
158158
pkg_failed=no
159-
AC_MSG_CHECKING([for $1])
159+
AC_MSG_CHECKING([for $2])
160160
161161
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
162162
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
@@ -166,17 +166,17 @@ and $1[]_LIBS to avoid the need to call pkg-config.
166166
See the pkg-config man page for more details.])
167167
168168
if test $pkg_failed = yes; then
169-
AC_MSG_RESULT([no])
169+
AC_MSG_RESULT([no])
170170
_PKG_SHORT_ERRORS_SUPPORTED
171171
if test $_pkg_short_errors_supported = yes; then
172-
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
173-
else
174-
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
172+
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
173+
else
174+
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
175175
fi
176-
# Put the nasty error message in config.log where it belongs
177-
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
176+
# Put the nasty error message in config.log where it belongs
177+
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
178178
179-
m4_default([$4], [AC_MSG_ERROR(
179+
m4_default([$4], [AC_MSG_ERROR(
180180
[Package requirements ($2) were not met:
181181
182182
$$1_PKG_ERRORS
@@ -187,8 +187,8 @@ installed software in a non-standard prefix.
187187
_PKG_TEXT])[]dnl
188188
])
189189
elif test $pkg_failed = untried; then
190-
AC_MSG_RESULT([no])
191-
m4_default([$4], [AC_MSG_FAILURE(
190+
AC_MSG_RESULT([no])
191+
m4_default([$4], [AC_MSG_FAILURE(
192192
[The pkg-config script could not be found or is too old. Make sure it
193193
is in your PATH or set the PKG_CONFIG environment variable to the full
194194
path to pkg-config.
@@ -198,10 +198,10 @@ _PKG_TEXT
198198
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
199199
])
200200
else
201-
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
202-
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
201+
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
202+
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
203203
AC_MSG_RESULT([yes])
204-
$3
204+
$3
205205
fi[]dnl
206206
])dnl PKG_CHECK_MODULES
207207

configure

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for gfarm 2.8.4.
3+
# Generated by GNU Autoconf 2.71 for gfarm 2.8.5.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@@ -618,8 +618,8 @@ MAKEFLAGS=
618618
# Identity of this package.
619619
PACKAGE_NAME='gfarm'
620620
PACKAGE_TARNAME='gfarm'
621-
PACKAGE_VERSION='2.8.4'
622-
PACKAGE_STRING='gfarm 2.8.4'
621+
PACKAGE_VERSION='2.8.5'
622+
PACKAGE_STRING='gfarm 2.8.5'
623623
PACKAGE_BUGREPORT=''
624624
PACKAGE_URL=''
625625

@@ -1414,7 +1414,7 @@ if test "$ac_init_help" = "long"; then
14141414
# Omit some internal or obsolete options to make the list less imposing.
14151415
# This message is too long to be a string in the A/UX 3.1 sh.
14161416
cat <<_ACEOF
1417-
\`configure' configures gfarm 2.8.4 to adapt to many kinds of systems.
1417+
\`configure' configures gfarm 2.8.5 to adapt to many kinds of systems.
14181418
14191419
Usage: $0 [OPTION]... [VAR=VALUE]...
14201420
@@ -1480,7 +1480,7 @@ fi
14801480

14811481
if test -n "$ac_init_help"; then
14821482
case $ac_init_help in
1483-
short | recursive ) echo "Configuration of gfarm 2.8.4:";;
1483+
short | recursive ) echo "Configuration of gfarm 2.8.5:";;
14841484
esac
14851485
cat <<\_ACEOF
14861486
@@ -1642,7 +1642,7 @@ fi
16421642
test -n "$ac_init_help" && exit $ac_status
16431643
if $ac_init_version; then
16441644
cat <<\_ACEOF
1645-
gfarm configure 2.8.4
1645+
gfarm configure 2.8.5
16461646
generated by GNU Autoconf 2.71
16471647
16481648
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2152,7 +2152,7 @@ cat >config.log <<_ACEOF
21522152
This file contains any messages produced by compilers while
21532153
running configure, to aid debugging if configure makes a mistake.
21542154
2155-
It was created by gfarm $as_me 2.8.4, which was
2155+
It was created by gfarm $as_me 2.8.5, which was
21562156
generated by GNU Autoconf 2.71. Invocation command line was
21572157
21582158
$ $0$ac_configure_args_raw
@@ -12384,8 +12384,8 @@ printf "%s\n" "no" >&6; }
1238412384
fi
1238512385

1238612386
pkg_failed=no
12387-
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for openssl" >&5
12388-
printf %s "checking for openssl... " >&6; }
12387+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ${with_openssl}" >&5
12388+
printf %s "checking for ${with_openssl}... " >&6; }
1238912389

1239012390
if test -n "$openssl_CFLAGS"; then
1239112391
pkg_cv_openssl_CFLAGS="$openssl_CFLAGS"
@@ -12425,7 +12425,7 @@ fi
1242512425

1242612426

1242712427
if test $pkg_failed = yes; then
12428-
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
12428+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
1242912429
printf "%s\n" "no" >&6; }
1243012430

1243112431
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
@@ -12434,12 +12434,12 @@ else
1243412434
_pkg_short_errors_supported=no
1243512435
fi
1243612436
if test $_pkg_short_errors_supported = yes; then
12437-
openssl_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${with_openssl}" 2>&1`
12437+
openssl_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${with_openssl}" 2>&1`
1243812438
else
12439-
openssl_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${with_openssl}" 2>&1`
12439+
openssl_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${with_openssl}" 2>&1`
1244012440
fi
12441-
# Put the nasty error message in config.log where it belongs
12442-
echo "$openssl_PKG_ERRORS" >&5
12441+
# Put the nasty error message in config.log where it belongs
12442+
echo "$openssl_PKG_ERRORS" >&5
1244312443

1244412444

1244512445
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: try using OpenSSL in default path" >&5
@@ -12451,7 +12451,7 @@ printf "%s\n" "try using OpenSSL in default path" >&6; }
1245112451
openssl_pkg=
1245212452

1245312453
elif test $pkg_failed = untried; then
12454-
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
12454+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
1245512455
printf "%s\n" "no" >&6; }
1245612456

1245712457
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: try using OpenSSL in default path" >&5
@@ -12463,8 +12463,8 @@ printf "%s\n" "try using OpenSSL in default path" >&6; }
1246312463
openssl_pkg=
1246412464

1246512465
else
12466-
openssl_CFLAGS=$pkg_cv_openssl_CFLAGS
12467-
openssl_LIBS=$pkg_cv_openssl_LIBS
12466+
openssl_CFLAGS=$pkg_cv_openssl_CFLAGS
12467+
openssl_LIBS=$pkg_cv_openssl_LIBS
1246812468
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1246912469
printf "%s\n" "yes" >&6; }
1247012470

@@ -16135,7 +16135,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1613516135
# report actual input values of CONFIG_FILES etc. instead of their
1613616136
# values after options handling.
1613716137
ac_log="
16138-
This file was extended by gfarm $as_me 2.8.4, which was
16138+
This file was extended by gfarm $as_me 2.8.5, which was
1613916139
generated by GNU Autoconf 2.71. Invocation command line was
1614016140
1614116141
CONFIG_FILES = $CONFIG_FILES
@@ -16203,7 +16203,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1620316203
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1620416204
ac_cs_config='$ac_cs_config_escaped'
1620516205
ac_cs_version="\\
16206-
gfarm config.status 2.8.4
16206+
gfarm config.status 2.8.5
1620716207
configured by $0, generated by GNU Autoconf 2.71,
1620816208
with options \\"\$ac_cs_config\\"
1620916209

0 commit comments

Comments
 (0)