forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hurd: Support --prefix=/usr special-casing for all GNU systems.
- Loading branch information
Showing
7 changed files
with
208 additions
and
110 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,5 +1,13 @@ | ||
2012-05-10 Thomas Schwinge <[email protected]> | ||
|
||
* sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...]. | ||
* sysdeps/mach/hurd/configure: Regenerated. | ||
* sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr | ||
special-casing to... | ||
* sysdeps/gnu/configure.in: ... this new file. | ||
* sysdeps/unix/sysv/linux/configure: Regenerated. | ||
* sysdeps/gnu/configure: New generated file. | ||
|
||
* sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done | ||
for Linux: use nsec instead of usec, as well as: | ||
[__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New | ||
|
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This file is generated from configure.in by Autoconf. DO NOT EDIT! | ||
|
||
# Local configure fragment for sysdeps/gnu. | ||
|
||
# The Filesystem Hierarchy Standard prescribes where to place "essential" | ||
# files. I.e., when the installation prefix is "/usr" we have to place | ||
# shared library objects and the configuration files on the root partition | ||
# in /lib and /etc. | ||
case "$prefix" in | ||
/usr | /usr/) | ||
# 64-bit libraries on bi-arch platforms go in /lib64 instead of /lib. | ||
# Allow earlier configure scripts to handle libc_cv_slibdir, libdir, | ||
# and libc_cv_localedir. | ||
test -n "$libc_cv_slibdir" || \ | ||
case $machine in | ||
sparc/sparc64 | x86_64* | powerpc/powerpc64 | s390/s390-64) | ||
libc_cv_slibdir=/lib64 | ||
if test "$libdir" = '${exec_prefix}/lib'; then | ||
libdir='${exec_prefix}/lib64'; | ||
# Locale data can be shared between 32bit and 64bit libraries | ||
libc_cv_localedir='${exec_prefix}/lib/locale' | ||
fi | ||
;; | ||
*) | ||
libc_cv_slibdir=/lib | ||
;; | ||
esac | ||
# Allow the user to override the path with --sysconfdir | ||
if test "$sysconfdir" = '${prefix}/etc'; then | ||
libc_cv_sysconfdir=/etc | ||
else | ||
libc_cv_sysconfdir=$sysconfdir | ||
fi | ||
libc_cv_rootsbindir=/sbin | ||
;; | ||
esac |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. | ||
|
||
# Local configure fragment for sysdeps/gnu. | ||
|
||
# The Filesystem Hierarchy Standard prescribes where to place "essential" | ||
# files. I.e., when the installation prefix is "/usr" we have to place | ||
# shared library objects and the configuration files on the root partition | ||
# in /lib and /etc. | ||
case "$prefix" in | ||
/usr | /usr/) | ||
# 64-bit libraries on bi-arch platforms go in /lib64 instead of /lib. | ||
# Allow earlier configure scripts to handle libc_cv_slibdir, libdir, | ||
# and libc_cv_localedir. | ||
test -n "$libc_cv_slibdir" || \ | ||
case $machine in | ||
sparc/sparc64 | x86_64* | powerpc/powerpc64 | s390/s390-64) | ||
libc_cv_slibdir=/lib64 | ||
if test "$libdir" = '${exec_prefix}/lib'; then | ||
libdir='${exec_prefix}/lib64'; | ||
# Locale data can be shared between 32bit and 64bit libraries | ||
libc_cv_localedir='${exec_prefix}/lib/locale' | ||
fi | ||
;; | ||
*) | ||
libc_cv_slibdir=/lib | ||
;; | ||
esac | ||
# Allow the user to override the path with --sysconfdir | ||
if test "$sysconfdir" = '${prefix}/etc'; then | ||
libc_cv_sysconfdir=/etc | ||
else | ||
libc_cv_sysconfdir=$sysconfdir | ||
fi | ||
libc_cv_rootsbindir=/sbin | ||
;; | ||
esac |
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