acinclude.m4: Fix duplicate variable names.
2007-08-24 Benjamin Kosnik <bkoz@redhat.com> * acinclude.m4: Fix duplicate variable names. * configure: Regenerate. From-SVN: r127784
This commit is contained in:
parent
ae80f46998
commit
80bf9cff52
3 changed files with 15 additions and 10 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-08-24 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* acinclude.m4: Fix duplicate variable names.
|
||||
* configure: Regenerate.
|
||||
|
||||
2007-08-24 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENOLINK, EPROTO
|
||||
|
|
|
@ -1303,12 +1303,12 @@ AC_DEFUN([GLIBCXX_CHECK_SYSTEM_ERROR], [
|
|||
fi
|
||||
|
||||
AC_MSG_CHECKING([for sys_nerr])
|
||||
AC_CACHE_VAL(ac_system_error3, [
|
||||
AC_CACHE_VAL(ac_system_error9, [
|
||||
AC_TRY_COMPILE([#include <errno.h> ], [ int i = sys_nerr; ],
|
||||
[ac_system_error3=yes], [ac_system_error3=no])
|
||||
[ac_system_error9=yes], [ac_system_error9=no])
|
||||
])
|
||||
AC_MSG_RESULT($ac_system_error3)
|
||||
if test x"$ac_system_error3" = x"yes"; then
|
||||
AC_MSG_RESULT($ac_system_error9)
|
||||
if test x"$ac_system_error9" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SYS_NERR, 1, [Define if sys_nerr exists.])
|
||||
fi
|
||||
])
|
||||
|
|
12
libstdc++-v3/configure
vendored
12
libstdc++-v3/configure
vendored
|
@ -16791,7 +16791,7 @@ _ACEOF
|
|||
|
||||
echo "$as_me:$LINENO: checking for sys_nerr" >&5
|
||||
echo $ECHO_N "checking for sys_nerr... $ECHO_C" >&6
|
||||
if test "${ac_system_error3+set}" = set; then
|
||||
if test "${ac_system_error9+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
|
||||
|
@ -16832,20 +16832,20 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|||
ac_status=$?
|
||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||
(exit $ac_status); }; }; then
|
||||
ac_system_error3=yes
|
||||
ac_system_error9=yes
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
|
||||
ac_system_error3=no
|
||||
ac_system_error9=no
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||
|
||||
fi
|
||||
|
||||
echo "$as_me:$LINENO: result: $ac_system_error3" >&5
|
||||
echo "${ECHO_T}$ac_system_error3" >&6
|
||||
if test x"$ac_system_error3" = x"yes"; then
|
||||
echo "$as_me:$LINENO: result: $ac_system_error9" >&5
|
||||
echo "${ECHO_T}$ac_system_error9" >&6
|
||||
if test x"$ac_system_error9" = x"yes"; then
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define HAVE_SYS_NERR 1
|
||||
|
|
Loading…
Add table
Reference in a new issue