comparison src/unexaix.c @ 4759:aa5ed11f473b

Remove support for obsolete systems. See xemacs-patches message with ID <870180fe0911101613m6b8efa4bpf083fd9013950807@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Wed, 18 Nov 2009 08:49:14 -0700
parents facf3239ba30
children 304aebb79cd3
comparison
equal deleted inserted replaced
4758:75975fd0b7fc 4759:aa5ed11f473b
586 { 586 {
587 int i; 587 int i;
588 LDHDR ldhdr; 588 LDHDR ldhdr;
589 LDREL ldrel; 589 LDREL ldrel;
590 ulong t_reloc = (ulong) &_text - f_ohdr.text_start; 590 ulong t_reloc = (ulong) &_text - f_ohdr.text_start;
591 #ifndef ALIGN_DATA_RELOC
592 ulong d_reloc = (ulong) &_data - f_ohdr.data_start; 591 ulong d_reloc = (ulong) &_data - f_ohdr.data_start;
593 #else
594 /* This worked (and was needed) before AIX 4.2.
595 I have no idea why. -- Mike */
596 ulong d_reloc = (ulong) &_data - ALIGN(f_ohdr.data_start, 2);
597 #endif
598 int * p; 592 int * p;
599 593
600 if (load_scnptr == 0) 594 if (load_scnptr == 0)
601 return 0; 595 return 0;
602 596