InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 01-27-2009, 05:04 AM
Aydinz's Avatar
Aydinz Aydinz is offline
 
Join Date: Sep 2008
Location: Australia
Posts: 236
Updating Java without OS X Upgrade

im running my AMD Hackintosh on 10.5.2 and i dont want to go through all the hassel of trying to upgrade it to the latest version of OS X until i upgrade my computer at which time i will be also reformatting my disks. However some of the software im trying to install doesnt work because i have out of date Java software and whenever i try to update my Java it tells me i need to upgrade to the latest version of OS X, is there any way of getting around this?

Cheers

iMac ::: Mac OS X 10.6.1 ::: Intel Core2Duo 2.93GHz ::: NVIDIA Geforce GT 120 256MB ::: 4GB DDR3 RAM

Milanca Project ::: Mac OS X 10.6.1 Retail ::: Vanilla Kernel ::: Intel Core2Quad Q6600 2.4GHz ::: NVIDIA GeForce 8600 GT 256MB ::: 4GB DDR2 RAM ::: GIGABYTE GA-EP35C-DS3R
Reply With Quote
  #2  
Old 01-27-2009, 03:08 PM
erick2red's Avatar
erick2red erick2red is offline
Tiger
 
Join Date: Dec 2008
Location: Santiago de Cuba, Cuba
Posts: 303
i don't think u can.
but u can try, i don't take any responsibilities for this, download java dmg update and then open it with pacifist, extract the files and copy it to the place they belong.

erick

CPU: Intel Pentium Dual E2140 1.6 GHz. Graphics: Intel(R) 82945G (128 MB). Board: Asus P5GC-TVM/S Chipset: Intel Lakeport-G i945GC. HDD: 232 Gb S-ATA Samsung
Version 10.6.2 32bit. Kernel: Vanilla. Audio: VoodooHDA 0.2.2 with prefpane. Video: Stock GMA. PS2 fix: VoodooPS2
USB 2 not working

Acer Aspire 4530-6823
CPU: AMD Athlon™ X2 QL-62 2.0GHz. Graphics: Integrated GeForce® 9100M G. Chipset: nForce® MCP77MH.
Reply With Quote
  #3  
Old 01-27-2009, 06:14 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
its not that simple. permissions and file ownership will not be correct for most (if not all) of the files.

you can pull the distribution file with Pacifist then open it with Text Edit or BBEdit (better) and look for the section
Quote:
if( system.compareVersions(system.version.ProductVersi on, "10.5.4") < 0)
{
my.result.message = system.localizedStringWithFormat('VC_Version_messa ge', '10.5.4');
my.result.type = 'MustNotUpgrade';
return false;
edit this to show
Quote:
if( system.compareVersions(system.version.ProductVersi on, "10.5.1") < 0)
{
my.result.message = system.localizedStringWithFormat('VC_Version_messa ge', '10.5.1');
my.result.type = 'MustNotUpgrade';
return false;
Now repackage and install. for more info on how to do this, I'd recommend:
http://developer.apple.com/documenta...pkgutil.1.html
http://s.sudre.free.fr/Stuff/PackageMaker_Howto.html look to the scripts section of this page.



💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers.


Reply With Quote
Reply