home *** CD-ROM | disk | FTP | other *** search
- --- 1.1 1994/05/06 09:54:12
- +++ Makefile 1994/05/15 10:18:36
- @@ -274,6 +274,12 @@
- #LDFLAGS = -i
- #LIB =-lm -lcurses -ltermcap
-
- +# Atari with MiNT
- +#- - - - - - - - - - - - - - - - - - - -
- +CFLAGS = -O2 -fomit-frame-pointer -mpcrel -mbaserel -Wall -DBSD43
- +LDFLAGS = -mbaserel
- +LIB = -lbpml -lbcurses
- +
- #
- # Some Definitions used in compiling/installing
- #---------------------------------------------------------------------------
- --- 1.1 1994/05/06 10:31:26
- +++ xmalloc.c 1994/05/06 10:32:20
- @@ -16,7 +16,7 @@
- #include "curs_sup.h"
- #include "ss.h"
-
- -#if !defined(__GO32__) && !defined(__NeXT__)
- +#if !defined(__GO32__) && !defined(__NeXT__) && !defined(HAVE_MEMORY_H)
- extern char *malloc();
- extern char *realloc();
- extern void free();
- --- 1.1 1994/05/06 10:52:30
- +++ curs_sup.h 1994/05/06 14:43:24
- @@ -44,7 +44,7 @@
- * Or HP/Apollo. (16Feb94, Thomas Dickey, dickey@software.org)
- * Or DOS w/djgpp. (16Feb94, Thomas Dickey, dickey@software.org)
- */
- -#if defined (__bsdi__) || defined (__NeXT__) || defined(apollo) || defined(__GO32__)
- +#if defined (__bsdi__) || defined (__NeXT__) || defined(apollo) || defined(__GO32__) || defined(NO_ATTR)
- # define STANDOUT_START standout()
- # define STANDOUT_END standend()
- #else
- @@ -66,7 +66,7 @@
- /*
- * beep() not in NeXT curses; check, then put here.
- */
- -#if defined(__NeXT__)
- +#if defined(__NeXT__) || defined(NO_BEEP)
- # define beep() putchar(7)
- #endif
-
-