!defined(USE_LTDL) fix

From-SVN: r42813
This commit is contained in:
Anthony Green 2001-06-02 19:40:53 +00:00 committed by Anthony Green
parent 9f0fbbabfb
commit 20f914dc05
2 changed files with 13 additions and 0 deletions

View File

@ -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.

View File

@ -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