!defined(USE_LTDL) fix
From-SVN: r42813
This commit is contained in:
parent
9f0fbbabfb
commit
20f914dc05
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-06-02 Anthony Green <green@redhat.com>
|
||||
|
||||
* java/lang/natRuntime.cc (_Jv_FindSymbolInExecutable): Provide an
|
||||
alternate when USE_LTDL not defined.
|
||||
|
||||
2001-06-02 Anthony Green <green@redhat.com>
|
||||
|
||||
* configure: Rebuild.
|
||||
|
|
|
@ -72,6 +72,14 @@ _Jv_FindSymbolInExecutable (const char *symname)
|
|||
return lt_dlsym (NULL, symname);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void *
|
||||
_Jv_FindSymbolInExecutable (const char *symname)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#endif /* USE_LTDL */
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Reference in a new issue