-1

I tried following the instructions given in this question: libimobiledevice 1.2 (iOS 8 Support) for Ubuntu 14.04 Trusty but something went wrong and this is what i got when i reached the eighth step:

~/src/libimobiledevice$ dpkg -L libimobiledevice dpkg-query: package 'libimobiledevice' is not installed Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents.

So yeah, not sure what this means, because i still can't link up my iPhone at all. I thought I followed the directions properly, so not sure what to do now.

Aaron B.
  • 11
  • 2
  • With this problem in step eight, you should have an error message in one of the previous steps. – A.B. Nov 12 '15 at 06:19
  • Delete the extracted source folder. Run all steps again. Post the whole output here http://paste.ubuntu.com/ and give me the link. – A.B. Nov 12 '15 at 06:22
  • I found the error: http://paste.ubuntu.com/13242964/ Something to do with OpenSSL – Aaron B. Nov 12 '15 at 23:45
  • it tells me that i already have the newest version. here's the paste link: http://paste.ubuntu.com/13245349/ – Aaron B. Nov 13 '15 at 05:00
  • Answer added and corrected. Have a look. – A.B. Nov 13 '15 at 05:39

1 Answers1

0

The output of the ./configure script says

checking for openssl... 
no configure: error: OpenSSL support explicitly requested but OpenSSL could not be found 

Install the necessary development library :

sudo apt-get install libssl-dev

and after that ... do it again :

./autogen.sh
cl-netbox
  • 31,163
  • 7
  • 94
  • 131
A.B.
  • 90,397