1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

rename configure.in to configure.ac

Autoconf has been deprecating configure.in for quite a long time.
Rename all our configure.in and preconfigure.in files to .ac.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2013-10-30 13:20:52 +10:00
committed by Allan McRae
parent 36a4953a1d
commit cb8a6dbd17
102 changed files with 245 additions and 68 deletions

View File

@ -1,3 +1,71 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* configure.in: Moved to ...
* configure.ac: ... here. Change reference to configure.in
to configure.ac.
* sysdeps/arm/preconfigure.ac: ... here.
configure.in to configure.ac.
* sysdeps/gnu/configure.in: Moved to ...
* sysdeps/gnu/configure.ac: ... here.
* sysdeps/i386/configure.in: Moved to ...
* sysdeps/i386/configure.ac: ... here.
* sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
* sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
* sysdeps/mach/configure.in: Moved to ...
* sysdeps/mach/configure.ac: ... here.
* sysdeps/mach/hurd/configure.in: Moved to ...
* sysdeps/mach/hurd/configure.ac: ... here.
* sysdeps/powerpc/configure.in: Moved to ...
* sysdeps/powerpc/configure.ac: ... here.
* sysdeps/powerpc/powerpc32/configure.in: Moved to ...
* sysdeps/powerpc/powerpc32/configure.ac: ... here.
* sysdeps/powerpc/powerpc64/configure.in: Moved to ...
* sysdeps/powerpc/powerpc64/configure.ac: ... here.
* sysdeps/s390/s390-32/configure.in: Moved to ...
* sysdeps/s390/s390-32/configure.ac: ... here.
* sysdeps/s390/s390-64/configure.in: Moved to ...
* sysdeps/s390/s390-64/configure.ac: ... here.
* sysdeps/sh/configure.in: Moved to ...
* sysdeps/sh/configure.ac: ... here.
* sysdeps/sparc/configure.in: Moved to ...
* sysdeps/sparc/configure.ac: ... here.
* sysdeps/unix/sysv/linux/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/configure.ac: ... here.
* sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
* sysdeps/x86_64/configure.in: Moved to ...
* sysdeps/x86_64/configure.ac: ... here.
* sysdeps/x86_64/preconfigure.in: Moved to ...
* sysdeps/x86_64/preconfigure.ac: ... here.
* aclocal.m4: Change reference to configure.in to configure.ac.
* config.h.in: Likewise.
* manual/install.texi: Likewise.
* manual/maint.texi: Likewise.
* Makefile: Likewise.
* malloc/Makefile: Likewise.
* nscd/Makefile: Likewise.
* Makeconfig: Change reference to configure.in and
preconfigure.in to configure.ac and preconfigure.ac
respectively.
* INSTALL: Regenerated.
* configure: Likewise.
* sysdeps/gnu/configure: Likewise.
* sysdeps/i386/configure: Likewise.
* sysdeps/ieee754/ldbl-opt/configure: Likewise.
* sysdeps/mach/configure: Likewise.
* sysdeps/mach/hurd/configure: Likewise.
* sysdeps/powerpc/configure: Likewise.
* sysdeps/powerpc/powerpc32/configure: Likewise.
* sysdeps/powerpc/powerpc64/configure: Likewise.
* sysdeps/s390/s390-32/configure: Likewise.
* sysdeps/s390/s390-64/configure: Likewise.
* sysdeps/sh/configure: Likewise.
* sysdeps/sparc/configure: Likewise.
* sysdeps/unix/sysv/linux/configure: Likewise.
* sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
* sysdeps/x86_64/configure: Likewise.
* sysdeps/x86_64/preconfigure: Likewise.
2013-10-29 Andreas Schwab <schwab@suse.de> 2013-10-29 Andreas Schwab <schwab@suse.de>
* stdio-common/Makefile (tst-swscanf-ENV): Define. * stdio-common/Makefile (tst-swscanf-ENV): Define.

View File

@ -368,7 +368,7 @@ build the GNU C Library:
should definitely upgrade `sed'. should definitely upgrade `sed'.
If you change any of the `configure.in' files you will also need If you change any of the `configure.ac' files you will also need
* GNU `autoconf' 2.53 or higher * GNU `autoconf' 2.53 or higher

View File

@ -88,16 +88,16 @@ $(common-objpfx)config.status: $(..)version.h $(..)configure \
$(wildcard $(dir)/Implies) \ $(wildcard $(dir)/Implies) \
$(patsubst %.in,%,\ $(patsubst %.in,%,\
$(firstword $(wildcard \ $(firstword $(wildcard \
$(addprefix $(dir)/,configure configure.in))))) \ $(addprefix $(dir)/,configure configure.ac))))) \
$(patsubst %.in,%,\ $(patsubst %.in,%,\
$(wildcard $(..)sysdeps/*/preconfigure $(..)sysdeps/*/preconfigure.in)) \ $(wildcard $(..)sysdeps/*/preconfigure $(..)sysdeps/*/preconfigure.ac)) \
$(patsubst %.in,%,\ $(patsubst %.in,%,\
$(foreach add-on,$(add-ons),\ $(foreach add-on,$(add-ons),\
$(firstword $(wildcard \ $(firstword $(wildcard \
$(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\ $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
configure configure.in))) \ configure configure.ac))) \
$(wildcard $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\ $(wildcard $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
sysdeps/*/preconfigure sysdeps/*/preconfigure.in)))) sysdeps/*/preconfigure sysdeps/*/preconfigure.ac))))
@cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \ @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
echo The GNU C library has not been configured. >&2; \ echo The GNU C library has not been configured. >&2; \
echo Run \`configure\' to configure it before building. >&2; \ echo Run \`configure\' to configure it before building. >&2; \

View File

@ -38,9 +38,9 @@ chmod a-w$(patsubst %,$(comma)a+x,$(filter .,$(@D))) $@.new
mv -f $@.new $@ mv -f $@.new $@
endef endef
configure: configure.in aclocal.m4; $(autoconf-it) configure: configure.ac aclocal.m4; $(autoconf-it)
%/configure: %/configure.in aclocal.m4; $(autoconf-it) %/configure: %/configure.ac aclocal.m4; $(autoconf-it)
%/preconfigure: %/preconfigure.in aclocal.m4; $(autoconf-it) %/preconfigure: %/preconfigure.ac aclocal.m4; $(autoconf-it)
endif # $(AUTOCONF) = no endif # $(AUTOCONF) = no

6
aclocal.m4 vendored
View File

@ -9,8 +9,8 @@ m4_defn([AC_AUTOCONF_VERSION])
), [63])])dnl ), [63])])dnl
dnl dnl
dnl We define the macro GLIBC_PROVIDES to do an AC_PROVIDE for each macro dnl We define the macro GLIBC_PROVIDES to do an AC_PROVIDE for each macro
dnl which appears in configure.in before the sysdep configure scripts are run. dnl which appears in configure.ac before the sysdep configure scripts are run.
dnl Each sysdep configure.in does GLIBC_PROVIDES first, to avoid any dnl Each sysdep configure.ac does GLIBC_PROVIDES first, to avoid any
dnl AC_REQUIREs or AC_BEFOREs duplicating their code. dnl AC_REQUIREs or AC_BEFOREs duplicating their code.
dnl dnl
define([GLIBC_PROVIDES], [dnl define([GLIBC_PROVIDES], [dnl
@ -39,7 +39,7 @@ dnl Ripped out of AS_INIT, which does more cruft we do not want.
m4_wrap([m4_divert_pop([BODY])[]]) m4_wrap([m4_divert_pop([BODY])[]])
m4_divert_push([BODY])[]dnl m4_divert_push([BODY])[]dnl
dnl End of ripped out of AS_INIT. dnl End of ripped out of AS_INIT.
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
define([_AC_LANG], [C])dnl define([_AC_LANG], [C])dnl
])dnl ])dnl
dnl dnl

View File

@ -201,13 +201,13 @@
They are used only in miscellaneous generator programs, not They are used only in miscellaneous generator programs, not
in compiling libc itself. */ in compiling libc itself. */
/* sysdeps/generic/configure.in */ /* sysdeps/generic/configure.ac */
#undef HAVE_PSIGNAL #undef HAVE_PSIGNAL
/* sysdeps/unix/configure.in */ /* sysdeps/unix/configure.ac */
#undef HAVE_STRERROR #undef HAVE_STRERROR
/* sysdeps/unix/common/configure.in */ /* sysdeps/unix/common/configure.ac */
#undef HAVE_SYS_SIGLIST #undef HAVE_SYS_SIGLIST
#undef HAVE__SYS_SIGLIST #undef HAVE__SYS_SIGLIST
#undef HAVE__CTYPE_ #undef HAVE__CTYPE_

2
configure vendored
View File

@ -5171,7 +5171,7 @@ $as_echo_n "checking whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works... " >&6; }
if ${libc_cv_autoconf_works+:} false; then : if ${libc_cv_autoconf_works+:} false; then :
$as_echo_n "(cached) " >&6 $as_echo_n "(cached) " >&6
else else
if (cd $srcdir; $AUTOCONF $ACFLAGS configure.in > /dev/null 2>&1); then if (cd $srcdir; $AUTOCONF $ACFLAGS configure.ac > /dev/null 2>&1); then
libc_cv_autoconf_works=yes libc_cv_autoconf_works=yes
else else
libc_cv_autoconf_works=no libc_cv_autoconf_works=no

View File

@ -1010,7 +1010,7 @@ xno|x|x:) AUTOCONF=no ;;
*) *)
AC_CACHE_CHECK(dnl AC_CACHE_CHECK(dnl
whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works, libc_cv_autoconf_works, [dnl whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works, libc_cv_autoconf_works, [dnl
if (cd $srcdir; $AUTOCONF $ACFLAGS configure.in > /dev/null 2>&1); then if (cd $srcdir; $AUTOCONF $ACFLAGS configure.ac > /dev/null 2>&1); then
libc_cv_autoconf_works=yes libc_cv_autoconf_works=yes
else else
libc_cv_autoconf_works=no libc_cv_autoconf_works=no
@ -2155,7 +2155,7 @@ AC_SUBST(static_nss)
AC_SUBST(DEFINES) AC_SUBST(DEFINES)
dnl See sysdeps/mach/configure.in for this variable. dnl See sysdeps/mach/configure.ac for this variable.
AC_SUBST(mach_interface_list) AC_SUBST(mach_interface_list)
VERSION=`sed -n -e 's/^#define VERSION "\([^"]*\)"/\1/p' < $srcdir/version.h` VERSION=`sed -n -e 's/^#define VERSION "\([^"]*\)"/\1/p' < $srcdir/version.h`

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* configure.in: Moved to ...
* configure.ac: ... here.
* configure: Regenerated.
2013-08-29 Ondřej Bílka <neleai@seznam.cz> 2013-08-29 Ondřej Bílka <neleai@seznam.cz>
* stringprep.c: Fix typos. * stringprep.c: Fix typos.

2
libidn/configure vendored
View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
libc_add_on_canonical= libc_add_on_canonical=

View File

@ -78,7 +78,7 @@ install-bin-script += memusage
generated += memusagestat memusage generated += memusagestat memusage
extra-objs += memusagestat.o extra-objs += memusagestat.o
# The configure.in check for libgd and its headers did not use $SYSINCLUDES. # The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
# The directory specified by --with-headers usually contains only the basic # The directory specified by --with-headers usually contains only the basic
# kernel interface headers, not something like libgd. So the simplest thing # kernel interface headers, not something like libgd. So the simplest thing
# is to presume that the standard system headers will be ok for this file. # is to presume that the standard system headers will be ok for this file.

View File

@ -413,7 +413,7 @@ should definitely upgrade @code{sed}.
@end itemize @end itemize
@noindent @noindent
If you change any of the @file{configure.in} files you will also need If you change any of the @file{configure.ac} files you will also need
@itemize @bullet @itemize @bullet
@item @item

View File

@ -316,7 +316,7 @@ This file is a shell script fragment to be run at configuration time.
The top-level @file{configure} script uses the shell @code{.} command to The top-level @file{configure} script uses the shell @code{.} command to
read the @file{configure} file in each system-dependent directory read the @file{configure} file in each system-dependent directory
chosen, in order. The @file{configure} files are often generated from chosen, in order. The @file{configure} files are often generated from
@file{configure.in} files using Autoconf. @file{configure.ac} files using Autoconf.
A system-dependent @file{configure} script will usually add things to A system-dependent @file{configure} script will usually add things to
the shell variables @samp{DEFS} and @samp{config_vars}; see the the shell variables @samp{DEFS} and @samp{config_vars}; see the
@ -329,14 +329,14 @@ shell variable @w{@samp{with_@var{package}}} (with any dashes in
just @w{@samp{--with-@var{package}}} (no argument), then it sets just @w{@samp{--with-@var{package}}} (no argument), then it sets
@w{@samp{with_@var{package}}} to @samp{yes}. @w{@samp{with_@var{package}}} to @samp{yes}.
@item configure.in @item configure.ac
This file is an Autoconf input fragment to be processed into the file This file is an Autoconf input fragment to be processed into the file
@file{configure} in this subdirectory. @xref{Introduction,,, @file{configure} in this subdirectory. @xref{Introduction,,,
autoconf.info, Autoconf: Generating Automatic Configuration Scripts}, autoconf.info, Autoconf: Generating Automatic Configuration Scripts},
for a description of Autoconf. You should write either @file{configure} for a description of Autoconf. You should write either @file{configure}
or @file{configure.in}, but not both. The first line of or @file{configure.ac}, but not both. The first line of
@file{configure.in} should invoke the @code{m4} macro @file{configure.ac} should invoke the @code{m4} macro
@samp{GLIBC_PROVIDES}. This macro does several @code{AC_PROVIDE} calls @samp{GLIBC_PROVIDES}. This macro does several @code{AC_PROVIDE} calls
for Autoconf macros which are used by the top-level @file{configure} for Autoconf macros which are used by the top-level @file{configure}
script; without this, those macros might be invoked again unnecessarily script; without this, those macros might be invoked again unnecessarily

View File

@ -1,3 +1,12 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/pthread/configure.in: Moved to ...
* sysdeps/pthread/configure.ac: ... here.
* sysdeps/x86_64/configure.in: Moved to ...
* sysdeps/x86_64/configure.ac: ... here.
* sysdeps/pthread/configure: Regenerated.
* sysdeps/x86_64/configure: Likewise.
2013-10-04 Maciej W. Rozycki <macro@codesourcery.com> 2013-10-04 Maciej W. Rozycki <macro@codesourcery.com>
* tst-mutex8.c (check_type) [ENABLE_PI]: Handle ENOTSUP failure * tst-mutex8.c (check_type) [ENABLE_PI]: Handle ENOTSUP failure

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
if test "x$libc_cv_gcc___thread" != xyes; then if test "x$libc_cv_gcc___thread" != xyes; then
as_fn_error $? "compiler support for __thread is required" "$LINENO" 5 as_fn_error $? "compiler support for __thread is required" "$LINENO" 5

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/i386. # Local configure fragment for sysdeps/i386.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for .cfi_personality and .cfi_lsda pseudo-ops" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for .cfi_personality and .cfi_lsda pseudo-ops" >&5

View File

@ -60,7 +60,7 @@ endif
nscd-modules += selinux nscd-modules += selinux
selinux-LIBS := -lselinux $(libaudit) $(libcap) selinux-LIBS := -lselinux $(libaudit) $(libcap)
# The configure.in check for libselinux and its headers did not use # The configure.ac check for libselinux and its headers did not use
# $SYSINCLUDES. The directory specified by --with-headers usually # $SYSINCLUDES. The directory specified by --with-headers usually
# contains only the basic kernel interface headers, not something like # contains only the basic kernel interface headers, not something like
# libselinux. So the simplest thing is to presume that the standard # libselinux. So the simplest thing is to presume that the standard

View File

@ -1,3 +1,8 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* README: Change references to preconfigure.in to
preconfigure.ac.
2013-01-02 Joseph Myers <joseph@codesourcery.com> 2013-01-02 Joseph Myers <joseph@codesourcery.com>
* README: Update copyright dates in example. * README: Update copyright dates in example.

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/aarch64/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/aarch64/configure.ac: ... here.
* sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
2013-09-30 Andrew Pinski <andrew.pinski@caviumnetworks.com> 2013-09-30 Andrew Pinski <andrew.pinski@caviumnetworks.com>
* sysdeps/unix/sysv/linux/aarch64/sysdep.h (SYSCALL_ERROR_HANDLER): * sysdeps/unix/sysv/linux/aarch64/sysdep.h (SYSCALL_ERROR_HANDLER):

View File

@ -1,3 +1,12 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/alpha/configure.in: Moved to ...
* sysdeps/alpha/configure.ac: ... here.
* sysdeps/unix/sysv/linux/alpha/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/alpha/configure.ac: ... here.
* sysdeps/alpha/configure: Regenerated.
* sysdeps/unix/sysv/linux/alpha/configure: Likewise.
2013-10-12 Yuri Chornoivan <yurchor@ukr.net> 2013-10-12 Yuri Chornoivan <yurchor@ukr.net>
* sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Fix typos. * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Fix typos.

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/am33/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/am33/configure.ac: ... here.
* sysdeps/unix/sysv/linux/am33/configure: Regenerated.
2013-08-29 Ondřej Bílka <neleai@seznam.cz> 2013-08-29 Ondřej Bílka <neleai@seznam.cz>
* sysdeps/unix/sysv/linux/am33/bits/fcntl.h: Fix typos. * sysdeps/unix/sysv/linux/am33/bits/fcntl.h: Fix typos.

View File

@ -1,3 +1,23 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/arm/configure.in: Moved to ...
* sysdeps/arm/configure.ac: ... here.
* sysdeps/arm/preconfigure.in: Moved to ...
* sysdeps/arm/preconfigure.ac: ... here. Change reference to
configure.in to configure.ac.
* sysdeps/arm/preconfigure: Regenerated.
* sysdeps/arm/armv7/configure.in: Moved to ...
* sysdeps/arm/armv7/configure.ac: ... here.
* sysdeps/unix/sysv/linux/arm/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/arm/configure.ac: ... here. Change
reference to preconfigure.in to preconfigure.ac.
* sysdeps/unix/sysv/linux/arm/configure: Regenerated.
* sysdeps/unix/sysv/linux/arm/nptl/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/arm/nptl/configure.ac: ... here.
* sysdeps/arm/configure: Regenerated.
* sysdeps/sysdeps/arm/armv7/configure: Likewise.
* sysdeps/unix/sysv/linux/arm/nptl/configure: Likewise.
2013-10-04 Will Newton <will.newton@linaro.org> 2013-10-04 Will Newton <will.newton@linaro.org>
* sysdeps/arm/__longjmp.S (NO_THUMB): Remove define. * sysdeps/arm/__longjmp.S (NO_THUMB): Remove define.

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/hppa/configure.in: Moved to ...
* sysdeps/hppa/configure.ac: ... here.
* sysdeps/hppa/configure: Regenerated.
2013-09-11 Andreas Schwab <schwab@suse.de> 2013-09-11 Andreas Schwab <schwab@suse.de>
* sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_TMPFILE): Define. * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_TMPFILE): Define.

View File

@ -1,3 +1,12 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/ia64/configure.in: Moved to ...
* sysdeps/ia64/configure.ac: ... here.
* sysdeps/unix/sysv/linux/ia64/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/ia64/configure.ac: ... here.
* sysdeps/ia64/configure: Regenerated.
* sysdeps/unix/sysv/linux/ia64/configure: Likewise.
2013-10-04 Alan Modra <amodra@gmail.com> 2013-10-04 Alan Modra <amodra@gmail.com>
* sysdeps/ia64/fpu/printf_fphex.c: Adjust for fpnum change. * sysdeps/ia64/fpu/printf_fphex.c: Adjust for fpnum change.

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/m68k/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/m68k/configure.ac: ... here.
* sysdeps/unix/sysv/linux/m68k/configure: Regenerated.
2013-10-08 Andreas Schwab <schwab@suse.de> 2013-10-08 Andreas Schwab <schwab@suse.de>
* sysdeps/m68k/start.S [SHARED]: Use PIC. * sysdeps/m68k/start.S [SHARED]: Use PIC.

View File

@ -1,3 +1,9 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/microblaze/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/microblaze/configure.ac: ... here.
* sysdeps/unix/sysv/linux/microblaze/configure: Regenerated.
2013-06-15 Siddhesh Poyarekar <siddhesh@redhat.com> 2013-06-15 Siddhesh Poyarekar <siddhesh@redhat.com>
* sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist:

View File

@ -1,3 +1,15 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/mips/configure.in: Moved to ...
* sysdeps/mips/configure.ac: ... here.
* sysdeps/unix/sysv/linux/mips/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/mips/configure.ac: ... here.
* sysdeps/unix/sysv/linux/mips/mips64/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/mips/mips64/configure.ac: ... here.
* sysdeps/mips/configure: Regenerated.
* sysdeps/unix/sysv/linux/mips/configure: Likewise.
* sysdeps/unix/sysv/linux/mips/mips64/configure: Likewise.
2013-09-26 Steve Ellcey <sellcey@mips.com> 2013-09-26 Steve Ellcey <sellcey@mips.com>
[BZ #15632] [BZ #15632]

View File

@ -1,3 +1,12 @@
2013-10-30 Mike Frysinger <vapier@gentoo.org>
* sysdeps/unix/sysv/linux/tile/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/tile/configure.ac: ... here.
* sysdeps/unix/sysv/linux/tile/tilegx/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/tile/tilegx/configure.ac: ... here.
* sysdeps/unix/sysv/linux/tile/configure: Regenerated.
* sysdeps/unix/sysv/linux/tile/tilegx/configure: Likewise.
2013-09-22 Carlos O'Donell <carlos@redhat.com> 2013-09-22 Carlos O'Donell <carlos@redhat.com>
[BZ #15754] [BZ #15754]

View File

@ -24,7 +24,7 @@ rather than the generic ones here.
The real source code for any ports is found in the sysdeps/ subdirectories. The real source code for any ports is found in the sysdeps/ subdirectories.
These should be exactly what would go into the main libc source tree if you These should be exactly what would go into the main libc source tree if you
were to incorporate it directly. The only exceptions are the files were to incorporate it directly. The only exceptions are the files
sysdeps/*/preconfigure and sysdeps/*/preconfigure.in; these are fragments sysdeps/*/preconfigure and sysdeps/*/preconfigure.ac; these are fragments
used by this add-on's configure fragment. The purpose of these is to set used by this add-on's configure fragment. The purpose of these is to set
$base_machine et al when the main libc configure's defaults are not right $base_machine et al when the main libc configure's defaults are not right
for some machine. Everything else can and should be done from a normal for some machine. Everything else can and should be done from a normal
@ -32,7 +32,7 @@ sysdeps/.../configure fragment that is used only when the configuration
selects that sysdeps subdirectory. Each port that requires some special selects that sysdeps subdirectory. Each port that requires some special
treatment before the sysdeps directory list is calculated, should add a treatment before the sysdeps directory list is calculated, should add a
sysdeps/CPU/preconfigure file; this can either be written by hand or sysdeps/CPU/preconfigure file; this can either be written by hand or
generated by Autoconf from sysdeps/CPU/preconfigure.in, and follow the generated by Autoconf from sysdeps/CPU/preconfigure.ac, and follow the
rules for glibc add-on configure fragments. No preconfigure file should do rules for glibc add-on configure fragments. No preconfigure file should do
anything on an unrelated configuration, so that disparate ports can be put anything on an unrelated configuration, so that disparate ports can be put
into a single add-on without interfering with each other. into a single add-on without interfering with each other.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/alpha. # Local configure fragment for sysdeps/alpha.
# With required gcc+binutils, we can always access static and hidden # With required gcc+binutils, we can always access static and hidden

2
ports/sysdeps/arm/armv7/configure vendored Executable file → Normal file
View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/arm/armv7. # Local configure fragment for sysdeps/arm/armv7.
# We need binutils 2.21 to ensure that NEON alignments are assembled correctly. # We need binutils 2.21 to ensure that NEON alignments are assembled correctly.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/arm. # Local configure fragment for sysdeps/arm.
#AC_DEFINE(PI_STATIC_AND_HIDDEN) #AC_DEFINE(PI_STATIC_AND_HIDDEN)

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local preconfigure fragment for sysdeps/arm # Local preconfigure fragment for sysdeps/arm
case "$machine" in case "$machine" in
@ -8,7 +8,7 @@ arm*)
# If the compiler enables unwind tables by default, this causes # If the compiler enables unwind tables by default, this causes
# problems with undefined symbols in -nostdlib link tests. To # problems with undefined symbols in -nostdlib link tests. To
# avoid this, add -fno-unwind-tables here and remove it in # avoid this, add -fno-unwind-tables here and remove it in
# sysdeps/unix/sysv/linux/arm/configure.in after those tests have # sysdeps/unix/sysv/linux/arm/configure.ac after those tests have
# been run. # been run.
if test "${CFLAGS+set}" != "set"; then if test "${CFLAGS+set}" != "set"; then
CFLAGS="-g -O2" CFLAGS="-g -O2"

View File

@ -8,7 +8,7 @@ arm*)
# If the compiler enables unwind tables by default, this causes # If the compiler enables unwind tables by default, this causes
# problems with undefined symbols in -nostdlib link tests. To # problems with undefined symbols in -nostdlib link tests. To
# avoid this, add -fno-unwind-tables here and remove it in # avoid this, add -fno-unwind-tables here and remove it in
# sysdeps/unix/sysv/linux/arm/configure.in after those tests have # sysdeps/unix/sysv/linux/arm/configure.ac after those tests have
# been run. # been run.
if test "${CFLAGS+set}" != "set"; then if test "${CFLAGS+set}" != "set"; then
CFLAGS="-g -O2" CFLAGS="-g -O2"

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for assembler line separator" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for assembler line separator" >&5
$as_echo_n "checking for assembler line separator... " >&6; } $as_echo_n "checking for assembler line separator... " >&6; }

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/ia64. # Local configure fragment for sysdeps/ia64.
$as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h $as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/mips. # Local configure fragment for sysdeps/mips.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/aarch64. # Local configure fragment for sysdeps/unix/sysv/linux/aarch64.
arch_minimum_kernel=3.7.0 arch_minimum_kernel=3.7.0

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/alpha # Local configure fragment for sysdeps/unix/sysv/linux/alpha
# We did historically export the unwinder from glibc. # We did historically export the unwinder from glibc.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for am33/sysdeps/unix/sysv/linux/am33 # Local configure fragment for am33/sysdeps/unix/sysv/linux/am33
arch_minimum_kernel=2.6.25 arch_minimum_kernel=2.6.25

View File

@ -1,6 +1,6 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/arm. # Local configure fragment for sysdeps/unix/sysv/linux/arm.
libc_cv_gcc_unwind_find_fde=no libc_cv_gcc_unwind_find_fde=no
# Remove -fno-unwind-tables that was added in sysdeps/arm/preconfigure.in. # Remove -fno-unwind-tables that was added in sysdeps/arm/preconfigure.ac.
CFLAGS=${CFLAGS% -fno-unwind-tables} CFLAGS=${CFLAGS% -fno-unwind-tables}

View File

@ -2,5 +2,5 @@ GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
# Local configure fragment for sysdeps/unix/sysv/linux/arm. # Local configure fragment for sysdeps/unix/sysv/linux/arm.
libc_cv_gcc_unwind_find_fde=no libc_cv_gcc_unwind_find_fde=no
# Remove -fno-unwind-tables that was added in sysdeps/arm/preconfigure.in. # Remove -fno-unwind-tables that was added in sysdeps/arm/preconfigure.ac.
CFLAGS=${CFLAGS% -fno-unwind-tables} CFLAGS=${CFLAGS% -fno-unwind-tables}

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
libc_cv_gcc_exceptions=yes libc_cv_gcc_exceptions=yes
exceptions=-fexceptions exceptions=-fexceptions

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/ia64 # Local configure fragment for sysdeps/unix/sysv/linux/ia64
ldd_rewrite_script=$dir/ldd-rewrite.sed ldd_rewrite_script=$dir/ldd-rewrite.sed

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
case $machine in case $machine in
m68k/coldfire) m68k/coldfire)
;; ;;

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/microblaze. # Local configure fragment for sysdeps/unix/sysv/linux/microblaze.
arch_minimum_kernel=2.6.30 arch_minimum_kernel=2.6.30

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/mips. # Local configure fragment for sysdeps/unix/sysv/linux/mips.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/mips/mips64. # Local configure fragment for sysdeps/unix/sysv/linux/mips/mips64.
ldd_rewrite_script=$dir/ldd-rewrite.sed ldd_rewrite_script=$dir/ldd-rewrite.sed

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/tile. # Local configure fragment for sysdeps/unix/sysv/linux/tile.
arch_minimum_kernel=2.6.32 arch_minimum_kernel=2.6.32

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/tile/tilegx # Local configure fragment for sysdeps/unix/sysv/linux/tile/tilegx
ldd_rewrite_script=$dir/ldd-rewrite.sed ldd_rewrite_script=$dir/ldd-rewrite.sed

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/gnu. # Local configure fragment for sysdeps/gnu.

View File

@ -29,7 +29,7 @@ $as_echo "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile } # ac_fn_c_check_header_compile
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/i386. # Local configure fragment for sysdeps/i386.
# We no longer support i386 since it lacks the atomic instructions # We no longer support i386 since it lacks the atomic instructions

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/ieee754/ldbl-opt/. # Local configure fragment for sysdeps/ieee754/ldbl-opt/.

View File

@ -65,7 +65,7 @@ $as_echo "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_preproc } # ac_fn_c_check_header_preproc
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}mig", so it can be a program name with args. # Extract the first word of "${ac_tool_prefix}mig", so it can be a program name with args.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
$as_echo "#define NO_HIDDEN 1" >>confdefs.h $as_echo "#define NO_HIDDEN 1" >>confdefs.h

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/powerpc. # Local configure fragment for sysdeps/powerpc.
# Accept binutils which knows about ".machine". # Accept binutils which knows about ".machine".

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/powerpc/powerpc32. # Local configure fragment for sysdeps/powerpc/powerpc32.
# See whether gas has R_PPC_REL16 relocs. # See whether gas has R_PPC_REL16 relocs.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/powerpc/powerpc64. # Local configure fragment for sysdeps/powerpc/powerpc64.
# The Aix ld uses global .symbol_names instead of symbol_names # The Aix ld uses global .symbol_names instead of symbol_names

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/s390. # Local configure fragment for sysdeps/s390.
$as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h $as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/s390. # Local configure fragment for sysdeps/s390.
$as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h $as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/sh. # Local configure fragment for sysdeps/sh.
$as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h $as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/sparc. # Local configure fragment for sysdeps/sparc.
# Check for support of VIS3 et al. instructions in the assembler. # Check for support of VIS3 et al. instructions in the assembler.

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux. # Local configure fragment for sysdeps/unix/sysv/linux.
# Don't bother trying to generate any glue code to be compatible with the # Don't bother trying to generate any glue code to be compatible with the

View File

@ -1,4 +1,4 @@
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/unix/sysv/linux/powerpc/. # Local configure fragment for sysdeps/unix/sysv/linux/powerpc/.

View File

@ -29,7 +29,7 @@ $as_echo "$ac_res" >&6; }
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile } # ac_fn_c_check_header_compile
# This file is generated from configure.in by Autoconf. DO NOT EDIT! # This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local configure fragment for sysdeps/x86_64. # Local configure fragment for sysdeps/x86_64.

Some files were not shown because too many files have changed in this diff Show More