This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: missing version in Glibc 2.1.94


>>>>> Graham Murray writes:

 > In a library compiled with glibc 2.1.3, I getting the error
 > "fsetpos64 version GLIBC_2.1 not defined in libc.so.6" 

 > when running using 2.1.94 (from ftp, not CVS)
Please try the appended patch,

Andreas

2000-09-21  Andreas Jaeger  <aj@suse.de>

	* libio/oldiofsetpos64.c: Fix alias names.

============================================================
Index: libio/oldiofsetpos64.c
--- libio/oldiofsetpos64.c	2000/09/05 11:58:40	1.4
+++ libio/oldiofsetpos64.c	2000/09/21 08:26:04
@@ -62,8 +62,8 @@
 
 #ifdef weak_alias
 compat_symbol (libc, _IO_old_fsetpos64, _IO_fsetpos64, GLIBC_2_1);
-strong_alias (_IO_fsetpos64, __old_fsetpos64)
-compat_symbol (libc, __old_fsetpos64, _IO_fsetpos64, GLIBC_2_1);
+strong_alias (_IO_old_fsetpos64, __old_fsetpos64)
+compat_symbol (libc, __old_fsetpos64, fsetpos64, GLIBC_2_1);
 #endif
 
 #endif


-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]