$ for f in $( find * -type f ) ; do file "$f" | grep ELF | cut -d ':' -f
1 ; done > file-list

Assuming that the openssl init symbol will be included:

$ for f in $( cat file-list ) ; do objdump -T "$f" | grep OPENSSL_init_ssl ; 
done
$ for f in $( cat file-list ) ; do objdump -T "$f" | grep SSL_library_init ; 
done

And for good measure:

$ for f in $( cat file-list ) ; do objdump -T "$f" | grep SSL ; done
$ for f in $( cat file-list ) ; do objdump -T "$f" | grep ssl ; done


Looks like none of the nodejs reverse-deps provided by Ubuntu actually link 
against openssl, so I think we should be ok with this change; it should not 
affect Ubuntu-provided nodejs packages, unless I'm missing something.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1779863

Title:
  Ubuntu nodejs package isn't ABI compatible with mainline nodejs.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nodejs/+bug/1779863/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to