From: Randal W. C. <wa...@xw...> - 2001-11-29 22:58:16
|
Hi, I think this is not a real bug, its just a missing link. If you do a ldd on udflib you will find this (I renamed mine udflib.mers, but this is because I have another lib named same)...by the way you will have the same issue with FreeUDFLib or another one that ldd finds problems with. root@www2:/opt/interbase/UDF# ldd udflib.mers libm.so.6 => /lib/libm.so.6 (0x40038000) libgds.so.0 => not found libc.so.6 => /lib/libc.so.6 (0x4005a000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) As you ca see libgds.so.0 is not found... root@www2:/opt/interbase/UDF# ls -l /usr/lib/libgds* lrwxrwxrwx 1 root root 35 Nov 20 17:12 /usr/lib/libgds.so -> .. /../opt/interbase/lib/libgds.so.0 r Seems the link is not installed by the installer anymore...maybe it should be So make a link and do ldconfig root@www2:/opt/interbase/UDF# ln -s /usr/lib/libgds.so /usr/lib/libgds.so.0 root@www2:/opt/interbase/UDF# ldconfig At this point you should see a different story with ldd root@www2:/opt/interbase/UDF# ldd udflib.mers libm.so.6 => /lib/libm.so.6 (0x40038000) libgds.so.0 => /usr/lib/libgds.so.0 (0x4005a000) libc.so.6 => /lib/libc.so.6 (0x400ad000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) root@www2:/opt/interbase/UDF# No errors, your library should work now, but I have not verified that particular one but it made others happy. Randal Carpenter wa...@xw... On Thu, 22 Nov 2001 no...@so... wrote: > Bugs item #484627, was opened at 2001-11-22 10:20 > You can respond by visiting: > http://sourceforge.net/tracker/?func=detail&atid=109028&aid=484627&group_id=9028 > > Category: Core Engine > Group: Initial Bug > Status: Open > Resolution: None > Priority: 5 > Submitted By: Michael Gast (mgast) > Assigned to: Nobody/Anonymous (nobody) > Summary: UDF are not longer accessible > > Initial Comment: > When i try to use an existing UDF i get the error message: > > function <FUNCTION_NAME> is not defined. > > The UDF library and all UDF definitions are working > fine with prior Firebird releases except RC1. > > My Firebird installation is running under Suse Linux 7.1. > > > > ---------------------------------------------------------------------- > > You can respond by visiting: > http://sourceforge.net/tracker/?func=detail&atid=109028&aid=484627&group_id=9028 > > _______________________________________________ > Firebird-devel mailing list > Fir...@li... > https://lists.sourceforge.net/lists/listinfo/firebird-devel > |