software-jessies-org / jessies

Terminator, Evergreen, lwm and friends
GNU General Public License v2.0
84 stars 19 forks source link

Terminator doesn't work on OS X 10.10 Public Beta #13

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
Issue 14 has been merged into this issue.

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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
# 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