mirror of git://sourceware.org/git/glibc.git
Update.
2000-11-03 Ulrich Drepper <drepper@redhat.com> * posix/Versions: Export __sysconf.
This commit is contained in:
parent
8bc6161d50
commit
d2830ba4cc
|
@ -1,3 +1,7 @@
|
||||||
|
2000-11-03 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* posix/Versions: Export __sysconf.
|
||||||
|
|
||||||
2000-11-02 Ulrich Drepper <drepper@redhat.com>
|
2000-11-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* version.h (VERSION): Bump to 2.1.97.
|
* version.h (VERSION): Bump to 2.1.97.
|
||||||
|
|
7
INSTALL
7
INSTALL
|
@ -87,6 +87,13 @@ will be used, and CFLAGS sets optimization options for the compiler.
|
||||||
add-ons that you _do_ want used, like this:
|
add-ons that you _do_ want used, like this:
|
||||||
`--enable-add-ons=linuxthreads'
|
`--enable-add-ons=linuxthreads'
|
||||||
|
|
||||||
|
`--enable-kernel=VERSION'
|
||||||
|
This option is currently only useful on Linux systems. The
|
||||||
|
VERSION parameter should have the form X.Y.Z and describes the
|
||||||
|
smallest version of the Linux kernel the generated library is
|
||||||
|
expected to support. The higher the VERSION number is, the less
|
||||||
|
compatibility code is added, and the faster the code gets.
|
||||||
|
|
||||||
`--with-binutils=DIRECTORY'
|
`--with-binutils=DIRECTORY'
|
||||||
Use the binutils (assembler and linker) in `DIRECTORY', not the
|
Use the binutils (assembler and linker) in `DIRECTORY', not the
|
||||||
ones the C compiler would default to. You could use this option if
|
ones the C compiler would default to. You could use this option if
|
||||||
|
|
3
NEWS
3
NEWS
|
@ -80,6 +80,9 @@ Version 2.2
|
||||||
recompiled. Don't expect binary compatibility with previous glibc
|
recompiled. Don't expect binary compatibility with previous glibc
|
||||||
versions.
|
versions.
|
||||||
|
|
||||||
|
* various conversion modules for IBM character sets contributed by
|
||||||
|
Masahide Washizawa.
|
||||||
|
|
||||||
* IA-64 port by Jes Sorensen and HJ Lu.
|
* IA-64 port by Jes Sorensen and HJ Lu.
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -105,6 +105,13 @@ not wish to use some add-on package that you have present in your source
|
||||||
tree, give this option a list of the add-ons that you @emph{do} want
|
tree, give this option a list of the add-ons that you @emph{do} want
|
||||||
used, like this: @samp{--enable-add-ons=linuxthreads}
|
used, like this: @samp{--enable-add-ons=linuxthreads}
|
||||||
|
|
||||||
|
@item --enable-kernel=@var{version}
|
||||||
|
This option is currently only useful on Linux systems. The
|
||||||
|
@var{version} parameter should have the form X.Y.Z and describes the
|
||||||
|
smallest version of the Linux kernel the generated library is expected
|
||||||
|
to support. The higher the @var{version} number is, the less
|
||||||
|
compatibility code is added, and the faster the code gets.
|
||||||
|
|
||||||
@item --with-binutils=@var{directory}
|
@item --with-binutils=@var{directory}
|
||||||
Use the binutils (assembler and linker) in @file{@var{directory}}, not
|
Use the binutils (assembler and linker) in @file{@var{directory}}, not
|
||||||
the ones the C compiler would default to. You could use this option if
|
the ones the C compiler would default to. You could use this option if
|
||||||
|
|
|
@ -105,5 +105,8 @@ libc {
|
||||||
posix_spawn; posix_spawnp; posix_spawnattr_getschedpolicy;
|
posix_spawn; posix_spawnp; posix_spawnattr_getschedpolicy;
|
||||||
posix_spawnattr_setschedpolicy; posix_spawnattr_getschedparam;
|
posix_spawnattr_setschedpolicy; posix_spawnattr_getschedparam;
|
||||||
posix_spawnattr_setschedparam;
|
posix_spawnattr_setschedparam;
|
||||||
|
|
||||||
|
# Used in macros.
|
||||||
|
__sysconf;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue