michaelben/jessies

Terminator doesn't work on OS X 10.10 Public Beta

Closed this issue · 7 comments

What steps will reproduce the problem?
1. Start Terminator (v26.230.6886)
2. A window pops up saying "This application requires at least Mac OS 10.4, but 
you have Mac OS 10.10. Please upgrade."

What version of the product are you using? On what operating system? << OS X 
10.10 Yosemite Public Beta


Original issue reported on code.google.com by 3091...@gmail.com on 5 Sep 2014 at 9:08

As a quick hack you can change the regexp that checks for OSX version (the 
coder didn't anticipate double-digit OSX minor versions:

edit: ./Contents/Resources/salma-hayek/bin/ensure-suitable-mac-os-version.rb

Use this line below (quick hack):

if actual_mac_os_version.match(/^10\.[1-9]/) == nil

Then you also need to copy (or softlink) the two .jnilib files to .dylib files:

./Contents/Resources/salma-hayek/.generated/universal_Darwin/lib/libposix.jnilib
./Contents/Resources/terminator/.generated/universal_Darwin/lib/libpty.jnilib



Original comment by ta...@poderc.com on 24 Oct 2014 at 6:07

The workaround works ok but it seems some features are still missing - eg. 
background opacity

Original comment by jon.f...@gmail.com on 28 Oct 2014 at 1:05

Issue 14 has been merged into this issue.

Original comment by martindo...@gmail.com on 30 Jan 2015 at 3:52

Looks to have been fixed by 
https://code.google.com/p/jessies/source/detail?r=6955.

Original comment by martindo...@gmail.com on 30 Jan 2015 at 3:55

  • Changed state: Fixed
That seems to have been uploaded as:

https://drive.google.com/open?id=0BzZNCgKvEkQYR1pFYmt1cFc1RXM&authuser=0

Original comment by martindo...@gmail.com on 30 Jan 2015 at 4:00

But see https://code.google.com/p/jessies/issues/detail?id=15.

Original comment by martindo...@gmail.com on 30 Jan 2015 at 4:25

# commands to link the library files:
cd 
/Applications/Terminator.app/Contents/Resources/salma-hayek/.generated/universal
_Darwin/lib/
ln -s libposix.jnilib libposix.dylib
cd 
/Applications/Terminator.app/Contents/Resources/terminator/.generated/universal_
Darwin/lib/
ln -s libpty.jnilib libpty.dylib

Original comment by WesleyZ...@gmail.com on 28 Apr 2015 at 4:29