mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
74fda86565
Submitted by: Obtained from: metamail - implementation of MIME, the Multipurpose Internet Mail Extensions
34 lines
696 B
Plaintext
34 lines
696 B
Plaintext
*** config.h.orig Mon Oct 17 21:06:22 1994
|
|
--- config.h Mon Oct 17 21:08:13 1994
|
|
***************
|
|
*** 73,79 ****
|
|
#ifdef SYSV
|
|
#define RESET_PROGRAM "tput clear"
|
|
#else
|
|
! #ifdef __BSD_4_4__
|
|
#define RESET_PROGRAM "/usr/bin/reset"
|
|
#else
|
|
#define RESET_PROGRAM "/usr/ucb/reset"
|
|
--- 73,79 ----
|
|
#ifdef SYSV
|
|
#define RESET_PROGRAM "tput clear"
|
|
#else
|
|
! #if defined(__BSD_4_4__) || defined(__FreeBSD__)
|
|
#define RESET_PROGRAM "/usr/bin/reset"
|
|
#else
|
|
#define RESET_PROGRAM "/usr/ucb/reset"
|
|
***************
|
|
*** 155,161 ****
|
|
--- 155,165 ----
|
|
#ifdef NeXT
|
|
#define sigtype void
|
|
#else
|
|
+ #ifdef __FreeBSD__
|
|
+ #define sigtype void
|
|
+ #else
|
|
#define sigtype int
|
|
+ #endif
|
|
#endif
|
|
#endif
|
|
|