Only in makeindexamiga/src: makefile.amg Only in makeindexamiga/src: makeindex diff -c -r makeindex/src/mkind.h makeindexamiga/src/mkind.h *** makeindex/src/mkind.h Sun Oct 20 00:56:48 1991 --- makeindexamiga/src/mkind.h Tue Feb 25 19:44:40 1992 *************** *** 78,83 **** --- 78,87 ---- * list at the end of this section, too. */ + #ifndef OS_AMIGA + #define OS_AMIGA 0 + #endif + #ifndef OS_ATARI #define OS_ATARI 0 #endif *************** *** 156,162 **** #if (OS_ATARI | OS_BSD | OS_BS2000 | OS_MVSXA | OS_PCDOS | OS_VMCMS) #else ! #if (OS_SYSV | OS_TOPS20 | OS_VAXVMS | OS_XENIX) #else #undef OS_BSD #define OS_BSD 1 /* Unix is default operating system */ --- 160,166 ---- #if (OS_ATARI | OS_BSD | OS_BS2000 | OS_MVSXA | OS_PCDOS | OS_VMCMS) #else ! #if (OS_SYSV | OS_TOPS20 | OS_VAXVMS | OS_XENIX | OS_AMIGA) #else #undef OS_BSD #define OS_BSD 1 /* Unix is default operating system */ *************** *** 190,196 **** #include #include ! #if (CCD_2000 | OS_SYSV | OS_PCDOS | __STDC__ | _AIX | ardent) #include #else --- 194,200 ---- #include #include ! #if (CCD_2000 | OS_SYSV | OS_PCDOS | OS_AMIGA | __STDC__ | _AIX | ardent) #include #else *************** *** 214,219 **** --- 218,232 ---- type checking */ #endif /* OS_PCDOS */ + #if OS_AMIGA + #include + #include + + #undef STDC_PROTOTYPES + #define STDC_PROTOTYPES 1 /* so we get full argument checking */ + + #endif + #if (OS_VMCMS | OS_MVSXA) #include /* for function declarations */ #include /* for function declarations */ *************** *** 337,342 **** --- 350,360 ---- #define LSQ '[' #define RSQ ']' #define BSH '\\' + + #if OS_AMIGA + #define ENV_SEPAR ',' + #define DIR_DELIM '/' + #endif #if OS_ATARI #define ENV_SEPAR ';'