home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / applic~1 / ss133st.zoo / ss_133 / PATCHES-ST < prev    next >
Encoding:
Text File  |  1994-05-15  |  1.4 KB  |  47 lines

  1. --- 1.1    1994/05/06 09:54:12
  2. +++ Makefile    1994/05/15 10:18:36
  3. @@ -274,6 +274,12 @@
  4.  #LDFLAGS    = -i
  5.  #LIB        =-lm -lcurses -ltermcap
  6.  
  7. +# Atari with MiNT
  8. +#- - - - - - - - - - - - - - - - - - - -
  9. +CFLAGS        = -O2 -fomit-frame-pointer -mpcrel -mbaserel -Wall -DBSD43
  10. +LDFLAGS        = -mbaserel
  11. +LIB        = -lbpml -lbcurses
  12. +
  13.  #
  14.  #       Some Definitions used in compiling/installing
  15.  #---------------------------------------------------------------------------
  16. --- 1.1    1994/05/06 10:31:26
  17. +++ xmalloc.c    1994/05/06 10:32:20
  18. @@ -16,7 +16,7 @@
  19.  #include "curs_sup.h"
  20.  #include "ss.h"
  21.  
  22. -#if !defined(__GO32__) && !defined(__NeXT__)
  23. +#if !defined(__GO32__) && !defined(__NeXT__) && !defined(HAVE_MEMORY_H)
  24.    extern char *malloc();
  25.    extern char *realloc();
  26.    extern void free();
  27. --- 1.1    1994/05/06 10:52:30
  28. +++ curs_sup.h    1994/05/06 14:43:24
  29. @@ -44,7 +44,7 @@
  30.   *    Or HP/Apollo. (16Feb94, Thomas Dickey, dickey@software.org)
  31.   *    Or DOS w/djgpp. (16Feb94, Thomas Dickey, dickey@software.org)
  32.   */
  33. -#if defined (__bsdi__) || defined (__NeXT__) || defined(apollo) || defined(__GO32__)
  34. +#if defined (__bsdi__) || defined (__NeXT__) || defined(apollo) || defined(__GO32__) || defined(NO_ATTR)
  35.  # define STANDOUT_START    standout()
  36.  # define STANDOUT_END    standend()
  37.  #else
  38. @@ -66,7 +66,7 @@
  39.  /*
  40.   * beep() not in NeXT curses; check, then put here.  
  41.   */
  42. -#if defined(__NeXT__)
  43. +#if defined(__NeXT__) || defined(NO_BEEP)
  44.  #  define beep() putchar(7)
  45.  #endif
  46.  
  47.