(08-31-2016, 03:28 AM)JosJuice Wrote: [ -> ]If you want to download the source code, then yes, that's essentially how it works. But there are also compiled builds for Windows and OS X available for download. If you want the latest OS X build for PR 4150, it's http://dl.dolphin-emu.org/prs/pr-4150-dolphin-latest.dmg
Thanks, that helped me test that pull request, and it does not work on my computer for the record. It gives me the same error.
Doing this fixed the problem though:
(08-28-2016, 07:48 PM)randomaccount6723 Wrote: [ -> ]I found a way to make Dolphin 5.0 work on OS X 10.9.5. You just need to use a newer version of libusb (in Dolphin.app/Contents/Frameworks). I downloaded the source code for libusb (version 1.0.20) from their website and compiled it according to their instructions (in the INSTALL file). Note that you might have to use 'sudo make install' rather than just 'make install.'
Also, the final compiled library is found at usr/local/lib/libusb-1.0.0.dylib (even though it's actually version 1.0.20). I used the new dylib file to replace the one that came with Dolphin and it worked!
By doing this, I was able to get Dolphin 5.0-321 running on my computer. The file wound up in a slightly different location on my computer. If other people in this situation want a step by step tutorial to be able to use Dolphin 5 on OS X 10.9 Mavericks I will try to give you a small guide.
I went to
https://sourceforge.net/projects/libusb/files/
Downloaded libusb-1.0.20.tar.bz2 (795.2 kB)
Unzipped it because its a compressed file, doing this gives you a folder
In that folder there are instructions how to install it on a text file called INSTALL
Opened Terminal and changed directory to this new libusb-1.0.20 I did this by dragging the folder over the terminal window
Typed
./configure into Terminal and waited for a bit
When it was finished I did
make as the next terminal command
Lastly I did
sudo make install and typed my computer's password
Next I had to go to /usr/local/usb on my computer to find the file it made, /usr is a hidden folder on OS X by default you can get there by opening a new Finder window and choosing "Go" from the top menubar, and then picking "Go to Folder" near the bottom of the drop down menu (you can also do this with the keyboard shortcut command+shift+G), a box will pop up, in there type /usr/local/lib
Inside of that folder there will be a file called libusb-1.0.0.dylib, copy it
Go to your Dolphin 5 application and right click on it, choose show package contents from the menu
Open the Contents folder and then the Frameworks folder
Paste the file into here, it will ask you if you want to replace the old one, choose yes since you want to replace the broken one
I can now use Dolphin 5
randomaccount6723 Wrote:If you're a dev and you're reading this, please fix the Dolphin 5.0 download to work on Mavericks. Some of have reasons to not want to upgrade.
I definitely agree with this. If it is a simple fix like just including the right libusb.dylib then it should be done instead of locking out an operating system because of this. I don't understand it fully but if it is just a simple file change, and doing that doesn't break anything else then it should be done.