home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / archives / makeindex2_11.lha / makeindex2.11 / amiga.diffs < prev    next >
Text File  |  1992-02-25  |  2KB  |  85 lines

  1. Only in makeindexamiga/src: makefile.amg
  2. Only in makeindexamiga/src: makeindex
  3. diff -c -r makeindex/src/mkind.h makeindexamiga/src/mkind.h
  4. *** makeindex/src/mkind.h    Sun Oct 20 00:56:48 1991
  5. --- makeindexamiga/src/mkind.h    Tue Feb 25 19:44:40 1992
  6. ***************
  7. *** 78,83 ****
  8. --- 78,87 ----
  9.    * list at the end of this section, too.
  10.    */
  11.   
  12. + #ifndef    OS_AMIGA
  13. + #define OS_AMIGA 0
  14. + #endif
  15.   #ifndef    OS_ATARI
  16.   #define OS_ATARI 0
  17.   #endif
  18. ***************
  19. *** 156,162 ****
  20.   
  21.   #if    (OS_ATARI | OS_BSD | OS_BS2000 | OS_MVSXA | OS_PCDOS | OS_VMCMS)
  22.   #else
  23. ! #if    (OS_SYSV | OS_TOPS20 | OS_VAXVMS | OS_XENIX)
  24.   #else
  25.   #undef OS_BSD
  26.   #define OS_BSD 1                      /* Unix is default operating system */
  27. --- 160,166 ----
  28.   
  29.   #if    (OS_ATARI | OS_BSD | OS_BS2000 | OS_MVSXA | OS_PCDOS | OS_VMCMS)
  30.   #else
  31. ! #if    (OS_SYSV | OS_TOPS20 | OS_VAXVMS | OS_XENIX | OS_AMIGA)
  32.   #else
  33.   #undef OS_BSD
  34.   #define OS_BSD 1                      /* Unix is default operating system */
  35. ***************
  36. *** 190,196 ****
  37.   #include    <stdio.h>
  38.   #include    <ctype.h>
  39.   
  40. ! #if    (CCD_2000 | OS_SYSV | OS_PCDOS | __STDC__ | _AIX | ardent)
  41.   #include    <string.h>
  42.   #else
  43.   
  44. --- 194,200 ----
  45.   #include    <stdio.h>
  46.   #include    <ctype.h>
  47.   
  48. ! #if    (CCD_2000 | OS_SYSV | OS_PCDOS | OS_AMIGA | __STDC__ | _AIX | ardent)
  49.   #include    <string.h>
  50.   #else
  51.   
  52. ***************
  53. *** 214,219 ****
  54. --- 218,232 ----
  55.                         type checking */
  56.   #endif                    /* OS_PCDOS */
  57.   
  58. + #if    OS_AMIGA
  59. + #include <stddef.h>
  60. + #include <stdlib.h>
  61. + #undef STDC_PROTOTYPES
  62. + #define STDC_PROTOTYPES    1           /* so we get full argument checking */
  63. + #endif
  64.   #if    (OS_VMCMS | OS_MVSXA)
  65.   #include    <stdefs.h>                 /* for function declarations */
  66.   #include    <string.h>                 /* for function declarations */
  67. ***************
  68. *** 337,342 ****
  69. --- 350,360 ----
  70.   #define LSQ '['
  71.   #define RSQ ']'
  72.   #define BSH '\\'
  73. + #if    OS_AMIGA
  74. + #define ENV_SEPAR ','
  75. + #define DIR_DELIM '/'
  76. + #endif
  77.   
  78.   #if    OS_ATARI
  79.   #define ENV_SEPAR ';'
  80.