typos in change#4660
authorGurusamy Sarathy <gsar@cpan.org>
Tue, 7 Dec 1999 09:33:50 +0000 (09:33 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Tue, 7 Dec 1999 09:33:50 +0000 (09:33 +0000)
p4raw-link: @4660 on //depot/perl: 014822e4c0d7b7cfffc319235fe7ea64ec87ecae

p4raw-id: //depot/perl@4661

embed.h
embed.pl
objXSUB.h
perl.h
perlapi.c
pp_sys.c
proto.h

diff --git a/embed.h b/embed.h
index a768cb6..b5c1816 100644 (file)
--- a/embed.h
+++ b/embed.h
@@ -49,7 +49,7 @@
 #else
 #endif
 #if defined(USE_ITHREADS)
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 #  endif
 #endif
 #if defined(MYMALLOC)
 #else
 #endif
 #if defined(USE_ITHREADS)
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 #  endif
 #endif
 #if defined(MYMALLOC)
 #else
 #endif
 #if defined(USE_ITHREADS)
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 #  endif
 #endif
 #if defined(MYMALLOC)
index e545124..ed29faa 100755 (executable)
--- a/embed.pl
+++ b/embed.pl
@@ -1040,7 +1040,7 @@ jno       |int    |perl_parse     |PerlInterpreter* interp|XSINIT_t xsinit \
                                |int argc|char** argv|char** env
 #if defined(USE_ITHREADS)
 jno    |PerlInterpreter*|perl_clone|PerlInterpreter* interp, UV flags
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 jno    |PerlInterpreter*|perl_clone_using|PerlInterpreter *interp|UV flags \
                                |struct IPerlMem* m|struct IPerlMem* ms \
                                |struct IPerlMem* mp|struct IPerlEnv* e \
index 62d61b1..6a7d171 100644 (file)
--- a/objXSUB.h
+++ b/objXSUB.h
 #else
 #endif
 #if defined(USE_ITHREADS)
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 #  endif
 #endif
 #if defined(MYMALLOC)
diff --git a/perl.h b/perl.h
index 7e0656a..eae26bb 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -1986,9 +1986,9 @@ END_EXTERN_C
 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
 #  else
-#    if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
+#    if !defined(WIN32)
 char *crypt (const char*, const char*);
-#    endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
+#    endif /* !WIN32 */
 #  endif /* !NeXT && !__NeXT__ */
 #  ifndef DONT_DECLARE_STD
 #    ifndef getenv
index 7760255..935085a 100644 (file)
--- a/perlapi.c
+++ b/perlapi.c
@@ -43,7 +43,7 @@ START_EXTERN_C
 #else
 #endif
 #if defined(USE_ITHREADS)
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 #  endif
 #endif
 #if defined(MYMALLOC)
index 8a1c98c..d853f6c 100644 (file)
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3602,7 +3602,7 @@ PP(pp_fork)
     PUSHi(childpid);
     RETURN;
 #else
-#  if defined(USE_ITHREADS) && defined(USE_IMPLICIT_SYS)
+#  if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
     djSP; dTARGET;
     Pid_t childpid;
 
@@ -3800,7 +3800,7 @@ PP(pp_exec)
 #endif
     }
 
-#if !defined(HAS_FORK) && defined(USE_ITHREADS) && defined(USE_IMPLICIT_SYS)
+#if !defined(HAS_FORK) && defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
     if (value >= 0)
        my_exit(value);
 #endif
diff --git a/proto.h b/proto.h
index f057294..f489870 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -20,7 +20,7 @@ PERL_CALLCONV int     perl_run(PerlInterpreter* interp);
 PERL_CALLCONV int      perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env);
 #if defined(USE_ITHREADS)
 PERL_CALLCONV PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags);
-#  if defined(USE_IMPLICIT_SYS)
+#  if defined(PERL_IMPLICIT_SYS)
 PERL_CALLCONV PerlInterpreter* perl_clone_using(PerlInterpreter *interp, UV flags, struct IPerlMem* m, struct IPerlMem* ms, struct IPerlMem* mp, struct IPerlEnv* e, struct IPerlStdIO* io, struct IPerlLIO* lio, struct IPerlDir* d, struct IPerlSock* s, struct IPerlProc* p);
 #  endif
 #endif