mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* scripts/test-installation.pl (installation_problem): Skip
libnss1_* libraries from glibc-compat add-on. Wed Apr 7 22:52:39 1999 H.J. Lu <hjl@gnu.org> * io/Versions (__dup2, __pipe): Added to GLIBC_2.0 for libstdc++ 2.7.2. * posix/Versions (__waitpid): Likewise. 1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
This commit is contained in:
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* scripts/test-installation.pl (installation_problem): Skip
|
||||||
|
libnss1_* libraries from glibc-compat add-on.
|
||||||
|
|
||||||
|
Wed Apr 7 22:52:39 1999 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* io/Versions (__dup2, __pipe): Added to GLIBC_2.0 for
|
||||||
|
libstdc++ 2.7.2.
|
||||||
|
* posix/Versions (__waitpid): Likewise.
|
||||||
|
|
||||||
1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
1999-04-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
* manual/install.texi (Reporting Bugs): Add section about reported
|
* manual/install.texi (Reporting Bugs): Add section about reported
|
||||||
|
@ -9,6 +9,9 @@ libc {
|
|||||||
__xstat; __fxstat; __lxstat; __xmknod; __write; __close; __fcntl;
|
__xstat; __fxstat; __lxstat; __xmknod; __write; __close; __fcntl;
|
||||||
__lseek; __open; __read;
|
__lseek; __open; __read;
|
||||||
|
|
||||||
|
# functions used by libstdc++ 2.7.2
|
||||||
|
__dup2; __pipe;
|
||||||
|
|
||||||
# a*
|
# a*
|
||||||
access;
|
access;
|
||||||
|
|
||||||
|
@ -15,6 +15,9 @@ libc {
|
|||||||
__sched_getparam; __sched_getscheduler; __sched_setscheduler;
|
__sched_getparam; __sched_getscheduler; __sched_setscheduler;
|
||||||
__sched_yield; __fork; __getpid; __wait;
|
__sched_yield; __fork; __getpid; __wait;
|
||||||
|
|
||||||
|
# functions used by libstdc++ 2.7.2
|
||||||
|
__waitpid;
|
||||||
|
|
||||||
# global variables
|
# global variables
|
||||||
__environ; _environ;
|
__environ; _environ;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /usr/bin/perl -w
|
#! /usr/bin/perl -w
|
||||||
|
|
||||||
# Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
# Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
# Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
|
# Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
|
||||||
|
|
||||||
@ -104,7 +104,9 @@ while (<SOVERSIONS>) {
|
|||||||
# Filter out some libraries we don't want to link:
|
# Filter out some libraries we don't want to link:
|
||||||
# - nss_ldap since it's not yet available
|
# - nss_ldap since it's not yet available
|
||||||
# - libdb1 since it conflicts with libdb
|
# - libdb1 since it conflicts with libdb
|
||||||
if ($name ne "nss_ldap" && $name ne "db1") {
|
# - libnss1_* from glibc-compat add-on
|
||||||
|
if ($name ne "nss_ldap" && $name ne "db1"
|
||||||
|
&& !($name =~/^nss1_/)) {
|
||||||
$link_libs .= " -l$name";
|
$link_libs .= " -l$name";
|
||||||
$versions{$name} = $version;
|
$versions{$name} = $version;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user