This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 962
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
1 parent
36a4953
commit cb8a6db
Showing
102 changed files
with
245 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,71 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* stdio-common/Makefile (tst-swscanf-ENV): Define. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,9 @@ chmod a-w$(patsubst %,$(comma)a+x,$(filter .,$(@D))) [email protected] | |
mv -f $@.new $@ | ||
endef | ||
|
||
configure: configure.in aclocal.m4; $(autoconf-it) | ||
%/configure: %/configure.in aclocal.m4; $(autoconf-it) | ||
%/preconfigure: %/preconfigure.in aclocal.m4; $(autoconf-it) | ||
configure: configure.ac aclocal.m4; $(autoconf-it) | ||
%/configure: %/configure.ac aclocal.m4; $(autoconf-it) | ||
%/preconfigure: %/preconfigure.ac aclocal.m4; $(autoconf-it) | ||
|
||
endif # $(AUTOCONF) = no | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* configure.in: Moved to ... | ||
* configure.ac: ... here. | ||
* configure: Regenerated. | ||
|
||
2013-08-29 Ondřej Bílka <[email protected]> | ||
|
||
* stringprep.c: Fix typos. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* tst-mutex8.c (check_type) [ENABLE_PI]: Handle ENOTSUP failure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* README: Change references to preconfigure.in to | ||
preconfigure.ac. | ||
|
||
2013-01-02 Joseph Myers <[email protected]> | ||
|
||
* README: Update copyright dates in example. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/unix/sysv/linux/aarch64/sysdep.h (SYSCALL_ERROR_HANDLER): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Fix typos. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/unix/sysv/linux/am33/bits/fcntl.h: Fix typos. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/arm/__longjmp.S (NO_THUMB): Remove define. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* sysdeps/hppa/configure.in: Moved to ... | ||
* sysdeps/hppa/configure.ac: ... here. | ||
* sysdeps/hppa/configure: Regenerated. | ||
|
||
2013-09-11 Andreas Schwab <[email protected]> | ||
|
||
* sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_TMPFILE): Define. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/ia64/fpu/printf_fphex.c: Adjust for fpnum change. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/m68k/start.S [SHARED]: Use PIC. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2013-10-30 Mike Frysinger <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
[BZ #15632] | ||
|
Oops, something went wrong.