[dummy merge]
[p5sagit/p5-mst-13.2.git] / dosish.h
1 #define ABORT() abort();
2
3 #define SH_PATH "/bin/sh"
4
5 #ifdef DJGPP
6 #  define BIT_BUCKET "nul"
7 #  define OP_BINARY O_BINARY
8 void Perl_DJGPP_init();
9 #  define PERL_SYS_INIT(argcp, argvp) STMT_START {        \
10     Perl_DJGPP_init();    } STMT_END
11 #else   /* DJGPP */
12 #  define PERL_SYS_INIT(c,v)
13 #  ifdef WIN32
14 #    define BIT_BUCKET "nul"
15 #  else
16 #    define BIT_BUCKET "\\dev\\nul" /* "wanna be like, umm, Newlined, or somethin?" */
17 #  endif
18 #endif  /* DJGPP */
19
20 #define PERL_SYS_TERM()
21 #define dXSUB_SYS
22 #define TMPPATH "plXXXXXX"
23
24 #ifdef WIN32
25 #define HAS_UTIME
26 #define HAS_KILL
27 #endif
28
29 /*
30  * 5.003_07 and earlier keyed on #ifdef MSDOS for determining if we were 
31  * running on DOS, *and* if we had to cope with 16 bit memory addressing 
32  * constraints, *and* we need to have memory allocated as unsigned long.
33  *
34  * with the advent of *real* compilers for DOS, they are not locked together.
35  * MSDOS means "I am running on MSDOS". HAS_64K_LIMIT means "I have 
36  * 16 bit memory addressing constraints".
37  *
38  * if you need the last, try #DEFINE MEM_SIZE unsigned long.
39  */
40 #ifdef MSDOS
41  #ifndef DJGPP
42   #define HAS_64K_LIMIT
43  #endif
44 #endif
45
46 /* USEMYBINMODE
47  *      This symbol, if defined, indicates that the program should
48  *      use the routine my_binmode(FILE *fp, char iotype) to insure
49  *      that a file is in "binary" mode -- that is, that no translation
50  *      of bytes occurs on read or write operations.
51  */
52 #undef USEMYBINMODE
53
54 /* USE_STAT_RDEV:
55  *      This symbol is defined if this system has a stat structure declaring
56  *      st_rdev
57  */
58 #define USE_STAT_RDEV   /**/
59
60 /* ACME_MESS:
61  *      This symbol, if defined, indicates that error messages should be 
62  *      should be generated in a format that allows the use of the Acme
63  *      GUI/editor's autofind feature.
64  */
65 #undef ACME_MESS        /**/
66
67 /* ALTERNATE_SHEBANG:
68  *      This symbol, if defined, contains a "magic" string which may be used
69  *      as the first line of a Perl program designed to be executed directly
70  *      by name, instead of the standard Unix #!.  If ALTERNATE_SHEBANG
71  *      begins with a character other then #, then Perl will only treat
72  *      it as a command line if if finds the string "perl" in the first
73  *      word; otherwise it's treated as the first line of code in the script.
74  *      (IOW, Perl won't hand off to another interpreter via an alternate
75  *      shebang sequence that might be legal Perl code.)
76  */
77 /* #define ALTERNATE_SHEBANG "#!" / **/
78
79 /*
80  * fwrite1() should be a routine with the same calling sequence as fwrite(),
81  * but which outputs all of the bytes requested as a single stream (unlike
82  * fwrite() itself, which on some systems outputs several distinct records
83  * if the number_of_items parameter is >1).
84  */
85 #define fwrite1 fwrite
86
87 #define Fstat(fd,bufptr)   fstat((fd),(bufptr))
88 #define Fflush(fp)         fflush(fp)
89 #define Mkdir(path,mode)   mkdir((path),(mode))
90
91 #ifndef WIN32
92 #  define Stat(fname,bufptr) stat((fname),(bufptr))
93 #else
94 #  define Stat(fname,bufptr) win32_stat((fname),(bufptr))
95 #  define my_getenv(var)  getenv(var)
96 /*
97  * the following are standard library calls (stdio in particular)
98  * that is being redirected to the perl DLL. This is needed for 
99  * Dynaloading any modules that called stdio functions
100  */
101 #  include <win32iop.h>
102 #endif  /* WIN32 */