Bug 91885

Summary: version GLIBC_2.0 not defined in file libc.so.6
Product: [Retired] Red Hat Linux Reporter: Srdjan Maksimovic <srdjan>
Component: glibcAssignee: Jakub Jelinek <jakub>
Status: CLOSED NOTABUG QA Contact: Brian Brock <bbrock>
Severity: high Docs Contact:
Priority: high    
Version: 9CC: fweimer
Target Milestone: ---   
Target Release: ---   
Hardware: i686   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-06-02 11:36:43 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Srdjan Maksimovic 2003-05-29 10:19:52 UTC
Description of problem:


Version-Release number of selected component (if applicable):
RedHat 9.0, Kernel 2.4.20-8, glibc 2.3.2 27-9

How reproducible:
When trying to build php get "symbol errno, version GLIBC_2.0 not defined in
file libc.so.6 with link time reference" message

Steps to Reproduce:
1.
2.
3.
    
Actual results:


Expected results:


Additional info:

Comment 1 Jakub Jelinek 2003-06-02 11:36:43 UTC
That's php bug which forgets to #include <errno.h> before using errno.
Either you need to fix that, or use php included in the distribution.
There is a workaround for broken binaries, you can pass LD_ASSUME_KERNEL=2.4.19
in the environment so that non-TLS libc is used.