diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 15:54:04 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 15:54:04 +0000 |
commit | 9a34ef1dede5fef4f3211de7a12cc37f4645a3bd (patch) | |
tree | 8da787182ae843967c47e779685b499b0074d253 /perl.c | |
parent | 67398a75376ae8069b240ba2953215647f70366c (diff) | |
download | perl-9a34ef1dede5fef4f3211de7a12cc37f4645a3bd.tar.gz |
some rearrangement of the includes for easier "microperl" build;
add PERL_MICRO guards supplied by Simon Cozens <simon@brecon.co.uk>
p4raw-id: //depot/perl@5143
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -27,13 +27,6 @@ char *getenv (char *); /* Usually in <stdlib.h> */ static I32 read_e_script(pTHXo_ int idx, SV *buf_sv, int maxlen); -#ifdef I_FCNTL -#include <fcntl.h> -#endif -#ifdef I_SYS_FILE -#include <sys/file.h> -#endif - #ifdef IAMSUID #ifndef DOSUID #define DOSUID @@ -1155,7 +1148,9 @@ print \" \\@INC:\\n @INC\\n\";"); CvPADLIST(PL_compcv) = comppadlist; boot_core_UNIVERSAL(); +#ifndef PERL_MICRO boot_core_xsutils(); +#endif if (xsinit) (*xsinit)(aTHXo); /* in case linked C routines want magical variables */ |