X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=unixish.h;h=7b8ef164c01bda29dee66511531acd1e1bd146ef;hb=e5c81feb3d32a96869ed78abc5cecef7e294da38;hp=c9a5495cdbde95baaff075baeba5188ced11f1b0;hpb=e520a73ce552ff0fdd3eac95f75c7a550009b637;p=p5sagit%2Fp5-mst-13.2.git diff --git a/unixish.h b/unixish.h index c9a5495..7b8ef16 100644 --- a/unixish.h +++ b/unixish.h @@ -5,6 +5,8 @@ * here. */ +#ifndef PERL_MICRO + /* HAS_IOCTL: * This symbol, if defined, indicates that the ioctl() routine is * available to set I/O characteristics @@ -33,6 +35,8 @@ #define HAS_KILL #define HAS_WAIT + +#endif /* !PERL_MICRO */ /* USEMYBINMODE * This symbol, if defined, indicates that the program should @@ -117,6 +121,9 @@ /* these should be set in a hint file, not here */ #ifndef PERL_SYS_INIT #if defined(PERL_SCO5) || defined(__FreeBSD__) +# ifdef __FreeBSD__ +# include +# endif # define PERL_SYS_INIT(c,v) fpsetmask(0); MALLOC_INIT #else # ifdef POSIX_BC @@ -132,7 +139,7 @@ #endif #ifndef PERL_SYS_TERM -#define PERL_SYS_TERM() MALLOC_TERM +#define PERL_SYS_TERM() OP_REFCNT_TERM; MALLOC_TERM #endif #define BIT_BUCKET "/dev/null"