Commit 20f914dc by Anthony Green Committed by Anthony Green

!defined(USE_LTDL) fix

From-SVN: r42813
parent 9f0fbbab
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.
* configure.in: Remove data_start hack.
* libgcj.spec.in: Ditto.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment