ttp://groups.google.com/groups?hl=en&threadm=3C6DFA45.3B21A09B%40in4tec.de&rnum=14&prev=/groups%3Fq%3Dphotoshop%2Bsgi%2Birix%2Blicense%26start%3D10%26hl%3Den%26selm%3D3C6DFA45.3B21A09B%2540in4tec.de%26rnum%3D14


>Use your favorit hex editor and edit:
>/usr/adobe/Photoshop_3.0.1/lib/src.so
>offset: 0x0046fa50   old_value: 0x14400018  
new_value: 0x10000018
>offset: 0x0046fae8   old_value: 0x104000c0  
new_value: 0x100000c0

----
NO HEX EDITOR?
-----
If you have 'cc' (try 'cc' and see if you actually
have the command),
you can avoid the hex editing and... (trying to do
this without typos)

--- fix.c ---
#include <stdio.h>
#include <stdlib.h>
void main()
{
  FILE
*fp=fopen("/usr/adobe/Photoshop_3.0.1/lib/src.so","rb+");
  int   n;
  if(fp)
  { fseek(fp,0x46fa50,SEEK_SET); n=0x10000018;
    fwrite(&n,1,4,fp);
    fseek(fp,0x46fae8,SEEK_SET); n=0x100000c0;
    fwrite(&n,1,4,fp);
  }
}
---

Compile ('cc fix.c') and run ('a.out'), but ofcourse
make a backup of
src.so first.
