summaryrefslogtreecommitdiff
path: root/dln.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-04 11:09:32 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-04 11:09:32 +0000
commit8362f9b58136c454e229640230b9381f50583859 (patch)
tree561f6b7126ea34606f50b8d23dd7646f671a1fe5 /dln.c
parent68f55c4b35a70f97c8d7ea6fde91f56a94d74f49 (diff)
* symbian/*: removed Symbian support.
[Feature #10199][ruby-core:64725] * dln.c: ditto. * include/ruby/defines.h: ditto. * thread_pthread.c: ditto. * vm.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dln.c')
-rw-r--r--dln.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/dln.c b/dln.c
index 25e40cf1e6..2b6a82f063 100644
--- a/dln.c
+++ b/dln.c
@@ -1347,11 +1347,6 @@ dln_load(const char *file)
strcpy(file, orig);
free(orig);
#endif
-#if defined __SYMBIAN32__
- if (init_fct == NULL) {
- init_fct = (void(*)())dlsym(handle, "1"); /* Some Symbian versions do not support symbol table in DLL, ordinal numbers only */
- }
-#endif
if (init_fct == NULL) {
error = DLN_ERROR();
dlclose(handle);