home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Exec 5
/
CD_Magazyn_EXEC_nr_5.iso
/
Recent
/
comm
/
mail
/
YAM23src.lha
/
Source
/
HowTo
< prev
Wrap
Text File
|
2001-03-08
|
2KB
|
49 lines
How to compile YAM 2.3-dev from a clean SAS/C 6.58 installation:
----------------------------------------------------------------
* Download 'dev/mui/mui38dev.lha' from Aminet and install the includes.
* Download http://ftp1.sourceforge.net/yamos/YAM22src.lha and copy
'lib/NewReadArgs.o' from the archive to lib:
* If you are using the NDK 3.1 from the SAS/C installation:
- In include:proto/locale.h, change line 4 from:
extern struct Library *LocaleBase ;
to:
extern struct LocaleBase *LocaleBase ;
- In include:proto/rexxsyslib.h, change line 4 from:
extern struct Library *RexxSysBase ;
to:
extern struct RxsLib *RexxSysBase ;
- In include:proto/utility.h, change line 4 from:
extern struct Library *UtilityBase ;
to:
extern struct UtilityBase *UtilityBase ;
* If you are using NDK 3.5 from the Developer CD V2.1:
- In include:proto/utility.h, change line 22 from:
extern struct Library * UtilityBase;
to:
extern struct UtilityBase * UtilityBase;
Required changes to compile YAM 2.3-dev with DICE
-------------------------------------------------
DINCLUDE:proto/timer.h:
extern struct Library *TimerBase; -> extern struct Device *TimerBase;
DINCLUDE:proto/rexxsyslib.h:
extern struct Library *RexxSysBase; -> extern struct RxsLib * RexxSysBase;
Required changes to compile YAM 2.3-dev with NDK 3.5 includes (StormC 3.0)
--------------------------------------------------------------------------
proto/utility.h:
extern struct Library * UtilityBase; -> extern struct UtilityBase * UtilityBase;