re PR libgcj/13056 (import new libltdl)
2003-12-16 Michael Koch <konqueror@gmx.de> Fix for PR libgcj/13056. * libltdl/configure.in, libltdl/config.h.in: Removed. * libltdl/configure.ac, libltdl/config-h.in, libltdl/install-sh, libltdl/config.guess, libltdl/config.sub, libltdl/missing, libltdl/mkinstalldirs, libltdl/ltmain.sh: New files. * libltdl/Makefile.am, libltdl/acinclude.m4, libltdl/aclocal.m4, libltdl/ltdl.c, libltdl/ltdl.h, libltdl/README: Update to versions from libtool 1.5. libltdl/configure, * libltdl/Makefile.in: Regenerated. * java/lang/natRuntime.cc (find_symbol): Use type 'lt_ptr' instead of 'lt_ptr_t'. From-SVN: r74711
This commit is contained in:
parent
08a5a9a63a
commit
9e129d901c
18 changed files with 38500 additions and 6704 deletions
|
@ -67,7 +67,7 @@ struct lookup_data
|
|||
};
|
||||
|
||||
static int
|
||||
find_symbol (lt_dlhandle handle, lt_ptr_t data)
|
||||
find_symbol (lt_dlhandle handle, lt_ptr data)
|
||||
{
|
||||
lookup_data *ld = (lookup_data *) data;
|
||||
ld->result = lt_dlsym (handle, ld->symname);
|
||||
|
@ -80,7 +80,7 @@ _Jv_FindSymbolInExecutable (const char *symname)
|
|||
lookup_data data;
|
||||
data.symname = symname;
|
||||
data.result = NULL;
|
||||
lt_dlforeach (find_symbol, (lt_ptr_t) &data);
|
||||
lt_dlforeach (find_symbol, (lt_ptr) &data);
|
||||
return data.result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue